-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1.26 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as req_handle:
requirements = req_handle.read().splitlines()
with open('README.md', 'r') as readme_handle:
long_description = readme_handle.read()
setup(
name='pysotope',
version='0.2.2',
description='Invert double spike isotope data.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Trygvi Bech Árting',
author_email='[email protected]',
url='https://github.com/tarting/pysotope',
license='GPL-2',
include_package_data=True,
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': ['pysotope = pysotope.run:main']
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.6',
)