Skip to content

Commit 6de9a5b

Browse files
committed
chore: fix package build
1 parent 4ccd82d commit 6de9a5b

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

pyproject.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "juju"
3+
version = "3.5.2.1" # Stop-gap until dynamic versioning is done; must be in sync with juju/version.py:CLIENT_VERSION
34
description = "Python library for Juju"
45
readme = "docs/readme.rst"
5-
license = "Apache-2.0"
6+
license = { file = "LICENSE" }
67
maintainers = [{name = "Juju Ecosystem Engineering", email = "juju@lists.ubuntu.com"}]
78
requires-python = ">=3.8"
8-
homepage = "https://github.com/juju/python-libjuju"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",
1111
"Intended Audience :: Developers",
@@ -21,20 +21,20 @@ classifiers = [
2121
"Operating System :: MacOS :: MacOS X",
2222
"Operating System :: POSIX :: Linux",
2323
]
24-
25-
[project.dependencies]
26-
macaroonbakery = ">=1.1,<2.0"
27-
pyRFC3339 = ">=1.0,<2.0"
28-
pyyaml = ">=5.1.2"
29-
websockets = ">=8.1,<14.0"
30-
paramiko = ">=2.4.0"
31-
pyasn1 = ">=0.4.4"
32-
toposort = ">=1.5,<2"
33-
typing_inspect = ">=0.6.0"
34-
kubernetes = ">=12.0.1,<31.0.0"
35-
hvac = "*"
36-
packaging = "*"
37-
typing-extensions = ">=4.5.0"
24+
dependencies = [
25+
"macaroonbakery>=1.1,<2.0",
26+
"pyRFC3339>=1.0,<2.0",
27+
"pyyaml>=5.1.2",
28+
"websockets>=8.1,<14.0",
29+
"paramiko>=2.4.0",
30+
"pyasn1>=0.4.4",
31+
"toposort>=1.5,<2",
32+
"typing_inspect>=0.6.0",
33+
"kubernetes>=12.0.1,<31.0.0",
34+
"hvac",
35+
"packaging",
36+
"typing-extensions>=4.5.0"
37+
]
3838

3939
[project.urls]
4040
"Homepage" = "https://juju.is/docs/sdk"

0 commit comments

Comments
 (0)