forked from DC-analysis/DCKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.39 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
from os.path import dirname, realpath, exists
from setuptools import setup, find_packages
import sys
author = u"Paul Müller"
authors = [author]
description = 'Graphical toolkit for RT-DC data management'
name = 'dckit'
year = "2019"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
from _version import version # noqa: E402
setup(
name=name,
author=author,
author_email='[email protected]',
url='https://github.com/DC-analysis/DCKit',
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=["dclab[tdms]>=0.49.0",
"h5py>=2.8.0",
# https://github.com/imageio/imageio/issues/766
"imageio[ffmpeg]==2.10.3",
"nptdms>=0.27.0",
"numpy>=1.21",
"pyqt5",
],
python_requires='>=3.8, <4',
entry_points={"gui_scripts": ['dckit = dckit.__main__:main']},
keywords=["RT-DC", "deformability", "cytometry", "zellmechanik"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
],
platforms=['ALL']
)