-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.07 KB
/
setup.py
File metadata and controls
31 lines (27 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from os import path
from setuptools import find_packages, setup
working_directory = path.abspath(path.dirname(__file__))
with open(path.join(working_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="agdiff",
version="0.0.1",
description='PyTorch Implementation of AGDIFF from "AGDIFF: Attention-Enhanced Diffusion for Molecular Geometry Prediction"',
long_description=long_description,
long_description_content_type="text/markdown",
author="Fatemeh Fathi Niazi",
author_email="fathinia@msu.edu",
url="https://github.com/ADicksonLab/AGDIFF",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords=["agdiff", "diffusion models", "generative models", "conformer"],
)