forked from outscale/osc-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.05 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
from setuptools import find_packages, setup
setup(
name="osc-sdk",
version="1.6",
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",
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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
url="https://github.com/outscale/osc-cli",
entry_points={"console_scripts": ["osc-cli = osc_sdk.sdk:main"]},
install_requires=[
"setuptools",
"fire==0.1.3",
"requests==2.21.0",
"xmltodict==0.11.0",
],
)