forked from jrwnter/cddd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 893 Bytes
/
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
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='cddd',
version='1.2.2',
packages=['cddd', 'cddd.data'],
package_data={'cddd': ['data/*', 'data/default_model']},
include_package_data=True,
url='https://github.com/jrwnter/cddd',
download_url='https://github.com/jrwnter/cddd/archive/refs/tags/1.2.2.tar.gz',
license='MIT',
author='Robin Winter',
author_email='[email protected]',
description='continous and data-driven molecular descriptors (CDDD)',
python_requires='>=3.6.1, <3.7',
install_requires=[
'tensorflow-gpu==1.10.0',
'scikit-learn',
'pandas<=1.0.3',
'requests',
'appdirs'
],
extras_require = {
'cpu': [
'tensorflow==1.10.0'
]
},
entry_points={
'console_scripts': [
'cddd = cddd.run_cddd:main_wrapper',
],
},
)