-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
46 lines (43 loc) · 1.27 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
from setuptools import find_packages, setup
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='geometric',
description='Geometry optimization for quantum chemistry',
url='https://github.com/leeping/geomeTRIC',
author='Lee-Ping Wang, Chenchen Song',
author_email='[email protected]',
packages=find_packages(),
package_data={'': ['*.ini']},
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={'console_scripts': [
'geometric-optimize = geometric.optimize:main',
'run-ase = geometric.ase_engine:main',
'geometric-neb = geometric.neb:main',
]},
install_requires=[
'numpy>=1.11',
'networkx',
'six',
'scipy',
],
tests_require=[
'pytest',
'pytest-cov',
],
extra_require={
'bigchem': ['bigchem']
},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)