-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (32 loc) · 1.07 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
import setuptools
with open('README.txt') as f:
README = f.read()
setuptools.setup(
name='NMRPyStar',
version='1.0.0',
python_requires=">=3.5",
# install_requires=[''],
# packages=setuptools.find_packages(),
packages=[
'nmrpystar',
'nmrpystar.unparse'
],
license='MIT',
author='Matt Fenwick',
author_email='[email protected]',
url='https://github.com/mattfenwick/NMRPyStar',
description='a parser for the NMR-STAR data format',
# TODO this causes the twine upload to break, need to figure out why
# long_description=README,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)