-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
36 lines (35 loc) · 1.21 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
from setuptools import find_packages, setup
setup(
name="osc-sdk",
version="1.11.0",
packages=find_packages(),
author="Outscale SAS",
author_email="[email protected]",
description="Outscale API SDK and CLI",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
license="BSD",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
],
url="https://github.com/outscale/osc-cli",
entry_points={"console_scripts": ["osc-cli = osc_sdk.sdk:main"]},
install_requires=[
"setuptools",
'dataclasses>=0.8; python_version < "3.7"',
"defusedxml>=0.7.1",
"fire>=0.1.3",
"requests>=2.26.0",
"typing_extensions>=3.10.0.2",
"xmltodict>=0.11.0",
],
)