-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (58 loc) · 1.87 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 __future__ import annotations
from pathlib import Path
from setuptools import find_packages, setup
readme_file = Path(__file__).parent / "README.md"
with readme_file.open() as f:
long_description = f.read()
setup(
name="isic-cli",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
url="https://github.com/ImageMarkup/isic-cli",
project_urls={
"Bug Reports": "https://github.com/ImageMarkup/isic-cli/issues",
"Source": "https://github.com/ImageMarkup/isic-cli",
},
author="Kitware, Inc.",
author_email="[email protected]",
keywords="",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
],
python_requires=">=3.10",
packages=find_packages(),
entry_points={"console_scripts": ["isic = isic_cli.cli:main"]},
install_requires=[
# we use the path_type=Path feature from click which was added in Click 8
"click>=8",
"django-s3-file-field-client>=1.0.0",
# We expect girder-cli-oauth-client to drop oob support in the future
"girder-cli-oauth-client<1.0.0",
"humanize",
"isic-metadata>=1.2.0",
"more-itertools",
"packaging",
"requests",
"retryable-requests",
"rich",
"sentry-sdk",
"tenacity",
],
extras_require={
"dev": [
"ipython",
"tox",
]
},
)