-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (34 loc) · 1.18 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
# -*- coding: utf-8 -*-
"""
documentation
"""
import molyso
from setuptools import setup, find_packages
setup(
name='molyso',
version=molyso.__version__,
description='MOther machine anaLYsis SOftware',
long_description='MOther machine anaLYsis SOftware - see https://github.com/modsim/molyso for details.',
author=molyso.__author__,
author_email='[email protected]',
url='https://github.com/modsim/molyso',
packages=find_packages(),
install_requires=['numpy', 'scipy', 'matplotlib', 'pilyso-io', 'tqdm', 'jsonpickle'],
package_data={
'molyso': ['test/example-frame.tif'],
},
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',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Recognition',
]
)