-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1019 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
THIS_DIR = Path(__file__).parent
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cell_analysis_tools",
version="1.0.1",
author="Emmanuel Contreras Guzman",
author_email="econtreras@wisc.edu",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
],
packages=find_packages(exclude=["tests", "dev"]),
# install_requires=parse_requirements("requirements.txt").read_text().splitlines(),
install_requires=[
'read-roi'
'umap-learn'
'scikit-image'
'scikit-learn'
'matplotlib'
'pandas'
]
)