-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 976 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="os-sdk-light",
version="0.2.6",
packages=find_packages(),
# metadata for upload to PyPI
author="Andrey Volkov",
author_email="amadev@mail.ru",
description="Lightweight OpenStack client with schema based approach",
license="MIT",
keywords="openstack client swagger openapi",
url="https://github.com/amadev/os-sdk-light",
install_requires=[
'os-client-config',
'bravado',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
include_package_data=True,
)