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