-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.05 KB
/
setup.py
File metadata and controls
43 lines (37 loc) · 1.05 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
32
33
34
35
36
37
38
39
40
41
42
43
import setuptools
from setuptools.command.install import install
import os
import subprocess
class CustomInstall(install):
def run(self):
install.run(self)
dir_path = os.path.dirname(os.path.realpath(__file__))
## add stuff here if necessary
setuptools.setup(
name='hermes',
version='0.1.0',
author='Gian Marco Visani',
author_email='gvisan01@.cs.washington.edu',
description='Learning protein neighborhoods by incorporating rotational symmetry - web version',
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
url='https://github.com/StatPhysBio/hermes',
python_requires='>=3.9',
packages=setuptools.find_packages(),
include_package_data=True,
cmdclass={"install": CustomInstall},
install_requires=[
"argparse",
"cmake",
"foldcomp",
"biopython",
"h5py",
"hdf5plugin",
"numpy",
"matplotlib",
"e3nn==0.5.0",
"pandas",
"tqdm",
"scikit-learn"
]
)