-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.72 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
44
45
46
47
48
49
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="CloudStackAIO",
version="0.0.8",
description="Very thin Python CloudStack client using asyncio",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/giffels/CloudStackAIO",
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",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"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",
],
keywords="asyncio cloudstack client",
packages=find_packages(exclude=["tests"]),
install_requires=["aiohttp"],
extras_require={
"contrib": ["flake8", "flake8-bugbear", "black; implementation_name=='cpython'"]
},
test_suite="tests",
zip_safe=False,
package_data={
"sample": ["CloudStack.py"],
},
project_urls={
"Bug Reports": "https://github.com/giffels/CloudStackAIO/issues",
"Source": "https://github.com/giffels/CloudStackAIO",
},
)