forked from benjiec/calibrate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·49 lines (43 loc) · 1.46 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
44
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup
setup(
name='calibrate',
version='0.10.0',
author='Ginkgo Bioworks, Benjie Chen',
author_email='[email protected], [email protected]',
description='Interpolate using a calibration curve',
long_description=open('README.rst').read(),
url='https://github.com/ginkgobioworks/calibrate',
license='MIT',
keywords='calibrate calibration linear regression power regression fit quantify',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules=['calibrate'],
include_package_data=True,
zip_safe=True,
install_requires=[
'numpy',
'scipy',
'six',
],
tests_require=[
'nose',
'coverage',
],
)