-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 872 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
from setuptools import setup, find_packages
version = "0.1.0"
with open("./README.md") as fd:
long_description = fd.read()
setup(
name="bmtrap",
version=version,
description=
"Co-positive cell registration of two volumes with antibody markers",
long_description=long_description,
install_requires=[
"matplotlib",
"scipy",
"scikit-image",
"zarr",
"numpy",
"tqdm",
"scikit-learn",
"pandas",
"tifffile",
"phathom"
],
author="Chung Lab @ MIT",
packages=["bmtrap",
],
entry_points={'console_scripts': [
'bmtrap=bmtrap.main:main'
]},
url="https://github.com/chunglabmit/bmtrap_2021",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 3.7',
]
)