forked from canonical/jhack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1003 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jhack"
version = "0.3.23"
authors = [
{ name = "Pietro Pasotti", email = "[email protected]" }
]
description = "Chock-full of Juju hackery."
license.text = "Apache 2.0"
keywords = ["juju", "hacks", "cli", "charm", "charming"]
urls.Source = "https://github.com/PietroPasotti/jhack"
dependencies = [
"ops-scenario(>=5.3.0)",
"typer(==0.7.0)",
"ops(>=2.8)",
"black",
"rich(==13.3.0)",
"parse(==1.19.0)",
"urllib3(==1.25)",
"requests(==2.29.0)",
"requests-unixsocket(==0.3.0)",
"asttokens",
"astunparse",
"toml",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
]
[project.scripts]
jhack = "jhack.main:main"
[tool.setuptools.package-dir]
jhack = "jhack"
[tool.ruff]
line-length = 99
[tool.black]
include = '\.pyi?$'
[tool.isort]
profile = "black"