-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 968 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
27
28
29
30
31
from sys import version_info
from setuptools import setup
if version_info.major == 3 and version_info.minor < 6 or \
version_info.major < 3:
print('Your Python interpreter must be 3.6 or greater!')
exit(1)
setup(name='predictor',
description='several rest services to allow easy prediction of spectra and properties',
url='https://github.com/metabolomics-us/pyspec',
author='Gert Wohlgemuth',
author_email='[email protected]',
license='GPLv3',
packages=['predictor'],
scripts=[
],
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'pytest-watch',
],
install_requires=[
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
])