-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (42 loc) · 1.32 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
import sys
import setuptools
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
if sys.version_info < (3, 6):
sys.exit('Python>=3.6 is required.')
setuptools.setup(
name="petuum_medical_images",
version="0.0.1a1",
url="https://github.com/petuum/medical_images",
description="The Petuum Medical Images Library built from "
"Petuum Open Source projects.",
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License Version 2.0',
packages=setuptools.find_packages(exclude=["scripts", "examples", "tests"]),
include_package_data=True,
platforms='any',
install_requires=[
'torch >= 1.5.0',
'torchvision',
'texar-pytorch >= 0.1.1',
'typing>=3.7.4;python_version<"3.5"',
'typing-inspect>=0.6.0',
'forte',
'nltk >= 3.5',
'sklearn'
],
extras_require={
},
entry_points={
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)