-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.53 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
41
42
43
from setuptools import setup, find_packages
import os
repo_base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(repo_base_dir, 'README.md'), 'r') as read_me:
long_description = read_me.read()
setup(
name='aioazure',
version='0.1.0',
description='Very thin Python Azure Compute client using asyncio',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/giffels/aioazure',
author='Manuel Giffels',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Session',
'Topic :: Utilities',
'Framework :: AsyncIO',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='asyncio azure compute client',
packages=find_packages(exclude=['tests']),
package_data={'aioazure.resources': ['models/*.yaml']},
install_requires=['aiohttp', 'PyYAML', 'simple-rest-client'],
tests_require=['flake8'],
zip_safe=False,
test_suite='tests',
project_urls={
'Bug Reports': 'https://github.com/giffels/aioazure/issues',
'Source': 'https://github.com/giffels/aioazure',
},
)