-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.25 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'MedSimilarity',
version = '1.0.0',
description = 'MedSimilarity is an open source Python to compare 2D medical images.',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/UM2ii/MedSimilarity',
author = 'Pranav Kulkarni',
author_email = 'pranavkop@live.com',
license = 'Apache License',
packages = find_packages(),
install_requires = [
'transformers>=4.6.0,<5.0.0',
'tqdm',
'torch>=1.6.0',
'torchvision',
'numpy',
'scikit-learn',
'scipy',
'nltk',
'sentencepiece',
'huggingface-hub>=0.4.0'
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
python_requires = ">=3.6",
)