[7823dd]: / setup.py

Download this file

39 lines (34 with data), 1.0 kB

 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.4",
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,<5",
"openslide-python>=1.1,<1.2",
"opencv-python>=4,<5",
"scikit-image>=0.19,<1",
"matplotlib>=3,<4",
"nptyping>=2,<3",
"pandas>=1,<2",
"dataclasses",
"sortedcontainers>=2,<3",
"ordered-set>=4,<5",
"shapely>=1,<2",
"scikit-learn>=1,<2",
],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
)