forked from hjkgrp/molSimplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='molSimplify',
version="v1.6.0",
packages=find_packages(),
entry_points={
'console_scripts': ['molsimplify = molSimplify.__main__:main',
'molscontrol = molSimplify.molscontrol.molscontrol:main',
'jobmanager = molSimplify.job_manager.resub:main']
},
package_dir={'molSimplify': 'molSimplify'},
package_data={
'molSimplify': ["Data/*.dat", "Bind/*.dat", "Ligands/*.dict", "icons/*.png",
"python_nn/*.csv", "python_krr/*.csv", "tf_nn/*/*", "molscontrol/*/*"]
},
data_files=[("molSimplify", ["molSimplify/Data/ML.dat"])],
install_requirements=['numpy', 'scipy', 'scikit-learn',
'pandas', 'keras', 'tensorflow', 'pyyaml'],
setup_requires=['pytest-runner'], # this may result some package conflict in local conda build. comment it out if needed.
tests_require=['pytest'],
include_package_data=True
)