forked from yoavram/curveball
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (76 loc) · 2.43 KB
/
setup.py
File metadata and controls
81 lines (76 loc) · 2.43 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of curveball.
# https://github.com/yoavram/curveball
# Licensed under the MIT license:
# http://www.opensource.org/licenses/MIT-license
# Copyright (c) 2015, Yoav Ram <yoav@yoavram.com>
from setuptools import setup, find_packages
import os
import versioneer
with open('README.md') as f:
README = f.read()
setup(
name='curveball',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Predicting competition results from growth curves',
long_description=README,
long_description_content_type='text/markdown',
keywords='microbiology biomath evolution',
author='Yoav Ram',
author_email='yoav@yoavram.com',
url='https://github.com/yoavram/curveball',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
],
packages=find_packages(),
include_package_data=True,
data_files=[('data', ['data/Tecan_280715.xlsx', 'data/Tecan_210115.xlsx', 'data/Tecan_210115.csv', 'data/20130211_dh.zip', 'data/plate_9_OD.mat', 'data/Sunrise_180515_0916.xlsx', 'data/BioTekSynergy.xlsx']),
('plate_templates', ['plate_templates/checkerboard.csv', 'plate_templates/G-RG-R.csv']),
],
install_requires=[
# remember to use 'package-name>=x.y.z,<x.y+1.0' notation (this way you get bugfixes)
'future',
'click',
'lxml',
'xlrd',
'numpy',
'scipy',
'matplotlib',
'pandas',
'seaborn>=0.7.1',
'scikit-learn',
'sympy',
'lmfit>=0.9.3',
'webcolors'
],
extras_require={
'tests': [
'nose',
'coverage',
'pillow'
],
'docs': [
'sphinx>=1.3.0',
'numpydoc',
'sphinx_rtd_theme'
]
},
entry_points={
'console_scripts': [
# add cli scripts here in this form:
'curveball=curveball.scripts.cli:cli',
],
},
)