-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
36 lines (34 loc) · 939 Bytes
/
setup.py
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
32
33
34
35
36
from setuptools import setup, find_packages
with open("README.md", "r") as source:
long_description = source.read()
setup(
name="foldingdiff",
author="Kevin Wu",
packages=find_packages(),
include_package_data=True,
description="Diffusion for protein backbone generation using internal angles",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/foldingdiff",
install_requires=[
"pandas",
"numpy",
"torch",
"scipy",
"transformers",
"pytorch-lightning",
"huggingface-hub",
"seaborn",
"mpl-scatter-density",
"astropy",
"gitpython",
"biotite",
"requests"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
version="0.0.1",
)