forked from canonical/python-libmaas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (54 loc) · 1.51 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
50
51
52
53
54
55
56
57
"""Setuptools installer for python-libmaas."""
from setuptools import (
find_packages,
setup,
)
setup(
name='python-libmaas',
author='MAAS Developers',
author_email='[email protected]',
url='https://github.com/maas/python-libmaas',
version="0.5.0",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
namespace_packages=['maas'],
packages=find_packages(
include={"maas", "maas.*"},
exclude={"*.tests", "*.testing"},
),
package_data={
'maas.client.bones.testing': ['*.json'],
},
install_requires={
"aiohttp >= 2.0.0",
"argcomplete >= 1.0",
"bson >= 0.4.8",
"colorclass >= 1.2.0",
"oauthlib >= 1.0.3",
"pytz >= 2014.10",
"PyYAML >= 3.11",
"terminaltables >= 2.1.0",
},
test_suite="maas.client",
tests_require={
"django >= 1.6",
"fixtures >= 1.0.0",
"setuptools",
"testscenarios",
"testtools",
"Twisted",
},
description="A client API library specially for MAAS.",
entry_points={
"console_scripts": {
"maas = maas.client.flesh:main",
},
},
)