forked from kili-technology/kili-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
74 lines (58 loc) · 2.25 KB
/
setup.py
File metadata and controls
74 lines (58 loc) · 2.25 KB
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
"""
This script permits to setup the python package.
"""
from setuptools import find_packages, setup
from kili import __version__
setup(
# name on pypi
name='kili',
# code version
version=__version__,
# List packages
packages=find_packages(),
author="Kili Technology",
author_email="contact@kili-technology.com",
description="Python client for Kili Technology labeling tool",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=["pandas",
"click",
"requests",
"six",
"tabulate",
"tqdm",
"typeguard",
"pyparsing",
"websocket-client"],
# Taking into account MANIFEST.in
include_package_data=True,
# Official page
url='https://github.com/kili-technology/kili-python-sdk',
# Some meta data:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers.
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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
('Programming Language :: Python :: '
'Implementation :: CPython'),
('Programming Language :: Python :: '
'Implementation :: PyPy')
],
entry_points={
'console_scripts': ["kili=kili.cli:main"],
},
)