-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (41 loc) · 1.52 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
# -*- coding: utf-8 -*-
"""
The setup.py file contains meta-information about the package, such as name, description and dependencies.
"""
from setuptools import setup, find_packages
import os
import sys
sys.path.insert(0, '.')
on_rtd = os.environ.get('READTHEDOCS') == 'True'
install_requires = [
'numpy', 'scipy', 'networkx', 'tables', 'numexpr', 'pandas', 'scikit-image',
'pilyso-io', 'mfisp_boxdetection', 'molyso', 'tunable',
'tqdm' # nicer progress bars, using the MPLv2+MIT licensed version
]
import mycelyso
setup(
name='mycelyso',
version=mycelyso.__version__,
description='MYCElium anaLYsis SOftware',
long_description='see https://github.com/modsim/mycelyso',
author=mycelyso.__author__,
author_email='[email protected]',
url='https://github.com/modsim/mycelyso',
packages=find_packages(),
install_requires=install_requires if not on_rtd else ['tunable'],
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Recognition',
]
)