forked from psi-rking/optking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (52 loc) · 1.61 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
import setuptools
import versioneer
short_description = "OptKing is a python geometry optimization module originally written for PSI by R. A. King."
try:
with open("README.md", "r") as handle:
long_description = handle.read()
except:
long_description = short_description
if __name__ == "__main__":
setuptools.setup(
name='OptKing',
description='A geometry optimizer for quantum chemistry.',
author='Rollin King',
author_email='[email protected]',
url="https://github.com/psi-rking/optking",
license='BSD-3C',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.7',
'qcelemental>=0.12.0',
'qcengine>=0.12.0',
'msgpack-python'
],
extras_require={
'docs': [
'sphinx', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown"
)