-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1019 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 1019 Bytes
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
# read the contents of your README file
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pathaia",
version="0.2.6",
description="procedures for wsi analysis",
author="Arnaud Abreu",
author_email="arnaud.abreu.p@gmail.com",
packages=find_packages(),
zip_safe=False,
install_requires=[
"fastcore>=1,<2",
"numpy>=1,<2",
"tqdm>=4",
"openslide-python>=1.1",
"opencv-python-headless>=4",
"scikit-image>=0.19,<1",
"matplotlib>=3",
"nptyping>=2,<3",
"pandas>=1",
"dataclasses",
"sortedcontainers>=2,<3",
"ordered-set>=4,<5",
"shapely>=1",
"scikit-learn>=1,<2",
],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
)