forked from hjkgrp/molSimplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 987 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='molSimplify',
version="v1.2.7-alpha",
packages=find_packages(),
entry_points={
'console_scripts': ['molsimplify = molSimplify.__main__:main',
'molscontrol = molSimplify.molscontrol.molscontrol: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
)