-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
56 lines (52 loc) · 1.78 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
import setuptools
if __name__ == "__main__":
setuptools.setup(
name='janus',
version="0.1.1",
description='A Python library for adaptive QM/MM methods',
author='Boyi Zhang',
author_email='[email protected]',
url="https://github.com/bzhang/janus",
license='BSD-3-Clause',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.7',
],
extras_require={
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
# data_files=[('janus/default_input/', ['janus/default_input/qmmm.json',
# 'janus/default_input/aqmmm.json',
# 'janus/default_input/psi4.json',
# 'janus/default_input/md.json',
# 'janus/default_input/system.json',
# 'janus/default_input/openmm.json'])],
entry_points={
'console_scripts': [
'janus = janus.janus:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)