forked from maxpmx/CelloType
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
62 lines (55 loc) · 1.91 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
60
61
62
from setuptools import setup,find_packages
import io
import re
with io.open('README.md', 'r', encoding='utf8') as f:
long_description = f.read()
# with io.open("src/useful_decoration/__init__.py", "rt", encoding="utf8") as f:
# version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setup(
name="cellotype",
license='Apache License 2.0',
version='0.1',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
# package_dir={"": "src"},
# long_description=long_description,
url='https://github.com/maxpmx/CelloType',
author='Minxing Pang',
author_email='minxing@sas.upenn.edu',
description='An end-to-end Transformer-based method for automated cell/nucleus segmentation and cell type classification',
# project_urls={
# "Documentation": "https://useful-decoration.readthedocs.io/en/latest/",
# "Code": "https://github.com/changyubiao/useful_decoration",
# },
python_requires='==3.8.*',
install_requires=[
'cython',
'scipy',
'shapely',
'timm',
'h5py',
'submitit',
'scikit-image',
'opencv-python',
'pycocotools',
'gdown',
'sahi',
'torch==1.9.0',
'torchvision==0.10.0',
'cudatoolkit==11.1',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)