forked from juju/python-libjuju
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (54 loc) · 1.71 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
58
59
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
from pathlib import Path
from setuptools import find_packages, setup
from juju.version import CLIENT_VERSION
here = Path(__file__).absolute().parent
readme = here / 'docs' / 'readme.rst'
changelog = here / 'docs' / 'changelog.rst'
long_description = '{}\n\n{}'.format(
readme.read_text(),
changelog.read_text()
)
long_description_content_type = 'text/x-rst'
setup(
name='juju',
version=CLIENT_VERSION.strip(),
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={'juju': ['py.typed']},
install_requires=[
'macaroonbakery>=1.1,<2.0',
'pyRFC3339>=1.0,<2.0',
'pyyaml>=5.1.2',
'websockets>=8.1',
'paramiko>=2.4.0',
'pyasn1>=0.4.4',
'toposort>=1.5,<2',
'typing_inspect>=0.6.0',
'kubernetes>=12.0.1',
'hvac',
'packaging',
],
include_package_data=True,
maintainer='Juju Ecosystem Engineering',
maintainer_email='[email protected]',
description=('Python library for Juju'),
long_description=long_description,
long_description_content_type=long_description_content_type,
url='https://github.com/juju/python-libjuju',
license='Apache 2',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={
'console_scripts': [
],
},
)