-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (36 loc) · 1.13 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
37
38
39
40
import io
import re
from os.path import join, dirname, abspath
from setuptools import setup, find_packages
def read(name):
here = abspath(dirname(__file__))
return io.open(
join(here, name), encoding='utf8'
).read()
setup(
name="AsyncOpenStackClient",
version="0.9.0",
author='Dreamlab - PaaS KRK',
author_email='[email protected]',
url='https://github.com/DreamLab/AsyncOpenStackClient',
description='Basic OpenStack async client library using asyncio',
long_description='%s\n%s' % (
read('README.rst'),
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))
),
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=read('requirements.txt').split('\n'),
zip_safe=False,
keywords=[
'iaas', 'cloud', 'openstack', 'nova', 'glance', 'async'
],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: POSIX',
'Development Status :: 4 - Beta'
]
)