-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (40 loc) · 1.28 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="flowcat",
author="Max Zhao",
author_email="[email protected]",
description="Classifier for flow cytometry data",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages("."),
entry_points={
'console_scripts': ['flowcat=flowcat.cmdline:main'],
},
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medicial Science Apps.",
],
install_requires=[
"keras==2.2.5",
"argmagic>=0.0.10",
"tensorflow==1.12",
"dataslots",
"scikit-learn",
"pydot",
"seaborn",
"scipy",
"matplotlib==3.1.0",
"numpy==1.16.5",
"pandas",
"fcsparser>=0.2.1",
# "fcsparser @ git+https://github.com/xiamaz/fcsparser.git@bitmask#egg=fcsparser",
"keras-vis @ git+https://github.com/jakob-he/keras-vis.git@multiinput#egg=keras-vis",
],
use_scm_version=True,
setup_requires=["setuptools_scm"],
)