-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
74 lines (70 loc) · 2.3 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import setuptools
from os import path
import chemml
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='chemml',
version=chemml.__version__,
author='Mojtaba Haghighatlari, Johannes Hachmann',
author_email='[email protected], [email protected]',
# url='https://github.com/hachmannlab/chemml',
project_urls={
'Source': 'https://github.com/hachmannlab/chemml',
'url': 'https://hachmannlab.github.io/chemml/'
},
description=
'A Machine Learning and Informatics Program Suite for the Chemical and Materials Sciences',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
'Machine Learning', 'Data Mining', 'Quantum Chemistry',
'Materials Science', 'Drug Discovery'
],
license='BSD-3C',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'future', 'six',
'numpy==1.26', 'pandas', 'scipy',
'tensorflow-cpu', 'rdkit',
'h5py', 'pydot',
'scikit-learn', 'xgboost',
'matplotlib>=1.5.1',
'lxml', 'wget',
'seaborn',
'openpyxl', 'ipywidgets',
'lime', 'shap'
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
'nbsphinx'
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
'tox'
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=False,
)