Diff of /setup.py [000000] .. [7823dd]

Switch to unified view

a b/setup.py
1
# read the contents of your README file
2
from os import path
3
4
from setuptools import find_packages, setup
5
6
this_directory = path.abspath(path.dirname(__file__))
7
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
8
    long_description = f.read()
9
10
11
setup(
12
    name="pathaia",
13
    version="0.2.4",
14
    description="procedures for wsi analysis",
15
    author="Arnaud Abreu",
16
    author_email="arnaud.abreu.p@gmail.com",
17
    packages=find_packages(),
18
    zip_safe=False,
19
    install_requires=[
20
        "fastcore>=1,<2",
21
        "numpy>=1,<2",
22
        "tqdm>=4,<5",
23
        "openslide-python>=1.1,<1.2",
24
        "opencv-python>=4,<5",
25
        "scikit-image>=0.19,<1",
26
        "matplotlib>=3,<4",
27
        "nptyping>=2,<3",
28
        "pandas>=1,<2",
29
        "dataclasses",
30
        "sortedcontainers>=2,<3",
31
        "ordered-set>=4,<5",
32
        "shapely>=1,<2",
33
        "scikit-learn>=1,<2",
34
    ],
35
    include_package_data=True,
36
    long_description=long_description,
37
    long_description_content_type="text/markdown",
38
)