-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
38 lines (35 loc) · 1.6 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
"""
Setup for pyMCR
"""
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(name='pyMCR',
version = '0.4.0a0',
description = 'Multivariate Curve Resolution in Python',
long_description = long_description,
url = 'https://github.com/usnistgov/pyMCR',
author = 'Charles H. Camp Jr.',
author_email = '[email protected]',
license = 'Public Domain',
packages = find_packages(),
zip_safe = False,
include_package_data = True,
install_requires=['numpy', 'scipy'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'])