forked from Dana-Farber-AIOS/pathml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (56 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
about = {}
with open('pathml/_version.py') as f:
exec(f.read(), about)
version = about["__version__"]
setuptools.setup(
name="pathml",
version=version,
author="Jacob Rosenthal, Ryan Carelli et al.",
author_email="[email protected]",
description="Tools for computational pathology",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
project_urls={
"Documentation": "https://pathml.readthedocs.io/en/stable",
"Source Code": "https://github.com/Dana-Farber-AIOS/pathml",
},
install_requires=[
"pip",
"numpy>=1.16.4",
"pandas",
"scipy",
"scikit-image",
"statsmodels",
"matplotlib",
"openslide-python",
"pydicom",
"h5py",
"scikit-learn",
"dask[distributed]",
"anndata>=0.7.6",
"scanpy",
"torch",
"opencv-contrib-python",
"python-bioformats>=4.0.0"
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Framework :: Sphinx",
"Framework :: Pytest",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)