-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (37 loc) · 1.16 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
from setuptools import setup
def readme():
with open('README.md', 'r') as f:
return f.read()
version = {}
with open('parse_NMR_dataset/_version.py', 'r') as fp:
exec(fp.read(), version)
setup(
name='parse NMR dataset',
version=version['__version__'],
description='A Python3 module to parse experimental information from a Bruker NMR dataset.',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: ',
],
keywords='NMR, Bruker, Structural biology,',
url='http://github.com/normcyr/parse_NMR_dataset',
author='Normand Cyr',
author_email='[email protected]',
license='GNU GPLv3',
packages=['parse_NMR_dataset'],
entry_points={
'console_scripts': ['parse_data=parse_NMR_dataset.parse_dataset:main'],
},
install_requires=[
'nmrglue',
'json2html',
'Jinja2',
],
zip_safe=False,
include_package_data=True,
python_requires='>=3.5',
)