-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.19 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
# -*- coding: utf-8 -*-
#
# --------------------------------------------------------------------
# Copyright (c) 2022 Vlad Popovici <[email protected]>
#
# Licensed under the MIT License. See LICENSE file in root folder.
# --------------------------------------------------------------------
from setuptools import setup
setup(
name='compath',
version='0.2.0',
description='Computational Pathology',
url='https://github.com/vladpopovici/ComPath',
author='Vlad Popovici',
author_email='[email protected]',
license='MIT',
packages=['compath'],
install_requires=['shapely',
'numpy',
'zarr',
'cp_mri',
'cp_annot',
'configargparse',
],
classifiers=[
'Development Status :: 4 - Beta'
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)