-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 997 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 997 Bytes
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
from setuptools import setup, find_packages
# Get version number
def getVersionNumber():
with open("valdo/VERSION", "r") as vfile:
version = vfile.read().strip()
return version
__version__ = getVersionNumber()
setup(name="rs-valdo",
version=__version__,
author="Phyllis Zhang, Minhuan Li",
license="MIT",
description="Vae assisited ligand discovery for crystallographic fragment screening",
url="https://github.com/Hekstra-Lab/drug-screening",
author_email='phylliszhang@college.harvard.edu, minhuanli@g.harvard.edu',
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=[
"torch>=1.13.0",
"gemmi<=0.6.7",
"reciprocalspaceship>=0.9.18",
"tqdm",
"scikit-learn"
],
entry_points={
"console_scripts": [
"valdo.refine=valdo.commandline.refine:main",
"valdo.occupancy=valdo.commandline.occupancy:main"
]
}
)