-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
76 lines (59 loc) · 1.48 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [ 'interfaces']
[project]
name = "charm-relation-interfaces"
version = "0.1.1"
authors = [
{ name = "Pietro Pasotti", email = "[email protected]" },
{ name = "Simon Aronsson", email = "[email protected]" },
{ name = "Guillaume Belanger", email = "[email protected]" },
]
description = "Charm relation interface protocol specifications."
license.text = "Apache-2.0"
keywords = ["juju", "relation interfaces"]
dependencies = [
"pydantic>2",
"pytest-interface-tester>=3.1.2",
"PyGithub>=2.3.0"
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
unit_tests = [
"ops>=2.9",
"PyYAML>=6.0",
"pytest>=7.3.1",
"ops-scenario>=7.0.5",
]
json_schemas = [
"PyYAML>=6.0",
]
interface_tests = [
"PyYAML>=6.0",
"pytest>=7.3.1",
"ops-scenario>=7.0.5",
"requests==2.28.1",
"virtualenv==20.25.1"
]
[project.urls]
"Homepage" = "https://github.com/canonical/charm-relation-interfaces"
"Bug Tracker" = "https://github.com/canonical/charm-relation-interfaces/issues"
[tool.ruff]
line-length = 99
[tool.black]
include = '\.pyi?$'
[tool.isort]
profile = "black"
[bdist_wheel]
universal = 1