forked from sysdiglabs/sysdig-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.42 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.42 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
from setuptools import setup, find_packages
setup(
name="sdcclient",
version="0.12.0",
description="Python client for Sysdig Cloud",
url="http://github.com/sysdiglabs/sysdig-sdk-python",
author="Sysdig Inc.",
author_email="info@sysdig.com",
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(
exclude=["contrib", "doc", "specs", "tests", "examples", "utils"]
),
python_requires=">=3.8, <4",
install_requires=[
"certifi==2020.6.20",
"chardet==3.0.4",
"idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pyaml==20.4.0",
"pyyaml==5.3.1",
"requests==2.24.0",
"requests-toolbelt==0.9.1",
"tatsu==5.5.0",
"urllib3==1.25.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
],
extras_require={"dev": []},
project_urls={
"Bug Reports": "https://github.com/sysdiglabs/sysdig-sdk-python/issues",
"Source": "https://github.com/sysdiglabs/sysdig-sdk-python/",
},
)