forked from DC-analysis/DCscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.44 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.44 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
from os.path import dirname, realpath, exists
from setuptools import setup, find_packages
import sys
maintainer = u"Paul Müller"
maintainer_email = "dev@craban.de"
description = 'User interface for real-time deformability cytometry (RT-DC)'
name = 'shapeout2'
year = "2019"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
from _version import version # noqa: E402
setup(
name=name,
maintainer=maintainer,
maintainer_email=maintainer_email,
url='https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2',
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license="GPL v3",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["fcswrite>=0.5.1",
"dclab[dcor,lme4]>=0.33.1",
"h5py>=2.8.0",
"numpy>=1.9.0",
"pyqt5",
"pyqtgraph",
"requests",
"scipy>=0.13.0"],
python_requires='>=3.6, <4',
entry_points={"gui_scripts": ['shapeout2 = shapeout2.__main__:main']},
keywords=["RT-DC", "deformability", "cytometry", "zellmechanik"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
],
platforms=['ALL']
)