-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
25 lines (22 loc) · 896 Bytes
/
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
from setuptools import setup
def get_version_number():
main_ns = {}
for line in open('pyqchem/__init__.py', 'r').readlines():
if not(line.find('__version__')):
exec(line, main_ns)
return main_ns['__version__']
# Make python package
setup(name='pyqchem',
version=get_version_number(),
description='Python wrapper for Q-Chem',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['numpy', 'scipy', 'lxml', 'requests', 'matplotlib', 'PyYAML'],
author='Abel Carreras',
author_email='[email protected]',
packages=['pyqchem', 'pyqchem.parsers', 'pyqchem.parsers.common'],
url='https://github.com/abelcarreras/PyQchem',
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License"]
)