forked from hjkgrp/molSimplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 1.07 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
23
24
25
from setuptools import setup, find_packages
setup(name='molSimplify',
version='v1.7.1',
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_requires=['numpy', 'scipy', 'scikit-learn',
'keras', 'tensorflow', 'pyyaml',
'pre-commit'],
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
)