-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (50 loc) · 1.3 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
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3"
]
build-backend = "setuptools.build_meta"
[project]
name = "theatre"
version = "0.1"
authors = [
{ name = "Pietro Pasotti", email = "[email protected]" }
]
description = "Experimental Scenario-driven charm development tool."
license.text = "Apache-2.0"
keywords = ["juju", "dev"]
dependencies = [
"qtpy==2.3.1",
"PyQt5==5.15.9",
"ops-scenario>=5.0",
"nodeeditor==0.9.13",
"typer"
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"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/PietroPasotti/theatre"
"Bug Tracker" = "https://github.com/PietroPasotti/theatre/issues"
[project.scripts]
theatre = "theatre.main:main"
[tool.setuptools.package-dir]
theatre = "theatre"
[tool.black]
include = '\.pyi?$'
[tool.flake8]
dictionaries = ["en_US","python","technical"]
max-line-length = 100
ignore = ["SC100", "SC200", "B008"]
[tool.isort]
profile = "black"
[bdist_wheel]
universal = 1