forked from kili-technology/kili-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
94 lines (89 loc) · 2.45 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
"""
This script permits to setup the python package.
"""
from setuptools import find_packages, setup
from src.kili import __version__
install_requires = [
"pandas",
"click",
"requests",
"tabulate",
"tenacity",
"tqdm",
"typeguard<3.0.0",
"typing_extensions>=4.1.0",
"pyparsing",
"websocket-client",
"pyyaml",
"Pillow",
"cuid",
"pydantic",
"urllib3>=1.26",
"ffmpeg-python",
"gql[requests,websockets]",
]
dev_extra = [
# release
"bump2version",
# tests
"pytest",
"pytest-mock",
"pytest-cov",
"pytest-xdist[psutil]",
# documentation
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python-legacy",
"mkdocs-click",
"mike",
"pymdown-extensions",
# linting
"black",
"pre-commit",
"pylint",
"flake8-unused-arguments",
"pyright",
# notebooks tests
"nbformat",
"nbconvert",
"ipykernel",
]
setup(
name="kili",
version=__version__,
package_dir={"": "src"},
packages=find_packages(where="src", exclude=["tests"]),
author="Kili Technology",
author_email="[email protected]",
description="Python client for Kili Technology labeling tool",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
install_requires=install_requires,
extras_require={"dev": dev_extra},
include_package_data=True,
entry_points={
"console_scripts": ["kili=kili.cli:main"],
},
url="https://github.com/kili-technology/kili-python-sdk",
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)