-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
67 lines (63 loc) · 2.08 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
import setuptools
from os import path
import chemhtps
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='chemhtps',
version=chemhtps.__version__,
author='Yudhajit Pal, William Evangelista, Johannes Hachmann',
author_email='[email protected], [email protected]',
# url='https://github.com/hachmannlab/chemml',
project_urls={
'Source': 'https://github.com/hachmannlab/chemhtps',
'url': 'https://hachmannlab.github.io/chemhtps/'
},
description=
'A General Purpose Computational Chemistry High-Throughput Screening Platform',
long_description=long_description,
scripts=['lib/chemhtpsshell'],
keywords=[
'Data Mining', 'Quantum Chemistry',
'Materials Science', 'Drug Discovery'
],
license='BSD-3C',
packages=setuptools.find_packages(),
install_requires=[
'future', 'six', 'numpy',
'chemlg'
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
'nbsphinx'
],
'tests': [
'pytest', #==3.10
'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 :: 2.7',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
zip_safe=False,
)