forked from canonical/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (41 loc) · 1.2 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
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3"
]
build-backend = "setuptools.build_meta"
[project]
name = "ops-scenario"
version = "7.0.6.dev0"
authors = [
{ name = "Pietro Pasotti", email = "[email protected]" }
]
maintainers = [
{ name = "The Charm Tech team at Canonical Ltd.", email = "[email protected]" }
]
description = "Python library providing a state-transition testing API for Operator Framework charms."
license.text = "Apache-2.0"
keywords = ["juju", "test"]
dependencies = [
"ops~=2.17",
"PyYAML>=6.0.1",
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
[project.urls]
"Homepage" = "https://github.com/canonical/operator"
"Bug Tracker" = "https://github.com/canonical/operator/issues"
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
[bdist_wheel]
universal = 1