-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (38 loc) · 919 Bytes
/
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
from setuptools import setup, find_packages
version = "0.1.0"
with open("./README.md") as fd:
long_description = fd.read()
setup(
name="scout",
version=version,
description=
"Multiscale hyperdimensional phentypic analysis of organoids",
long_description=long_description,
install_requires=[
"matplotlib",
"scipy",
"scikit-image",
"zarr",
"numcodecs",
"numpy",
"h5py",
"tqdm",
"scikit-learn",
"pandas",
"tifffile",
"lapsolver",
"tensorflow"
],
author="Kwanghun Chung Lab",
packages=["scout",
],
entry_points={'console_scripts': [
'scout=scout.main:main'
]},
url="https://github.com/chunglabmit/scout",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 3.6',
]
)