-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·86 lines (77 loc) · 2.36 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
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
82
83
84
85
86
#!/usr/bin/env python
"""
## Development
### release new version
git commit -am "version bump";git push origin master
python setup.py --version
git tag -a v$(python setup.py --version) -m "upgrade";git push --tags
"""
import sys
if (sys.version_info[0]) != (3):
raise RuntimeError('Python 3 required ')
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
requirements = {
'base':[
'roux>=0.0.9', # helper functions
'scikit-image', # image processing.
'argh', # for command-line convinience
'seaborn',
'fastparquet',
],
'spt':[
'pims==0.4.1',
'trackpy', # for tracking the particles
'numba', # required by trackpy for faster processing
],
## development and maintenance
'dev':[
'pytest',
'jupyter','ipywidgets','ipykernel',
# 'sphinx','recommonmark',
'black',
'coveralls == 3.*',
'flake8',
'isort',
'pytest-cov == 2.*',
'testbook',
'papermill',
'lazydocs', 'regex', ## docs
],
}
extras_require={k:l for k,l in requirements.items() if not k=='base'}
## all: extra except dev
extras_require['all']=[l for k,l in extras_require.items() if not k=='dev']
### flatten
extras_require['all']=[s for l in extras_require['all'] for s in l]
### unique
extras_require['all']=list(set(extras_require['all']))
# main setup command
setuptools.setup(
name='htsimaging',
version='1.0.5',
description='High-Throughput Single-cell Imaging analysis.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/rraadd88/htsimaging',
author='rraadd88',
author_email='rohanadandage@gmail.com',
license='General Public License v. 3',
packages=setuptools.find_packages('.',exclude=['test','tests', 'unit','deps','data','examples']),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requirements['base'],
extras_require=extras_require,
# entry_points={
# 'console_scripts': ['htsimaging = htsimaging.run:parser.dispatch',],
# },
python_requires='>=3.7, <4',
)