-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.91 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "heroku-audit"
description = "Command-line tool for reporting on specific attributes of a Heroku environment."
authors = [
{name = "Jake Howard", email = "[email protected]"},
]
dynamic = ["version"]
readme = "README.md"
classifiers = [
"License :: OSI Approved",
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Natural Language :: English",
"Typing :: Typed"
]
requires-python = ">=3.9"
dependencies = [
"heroku3==5.2.1",
"typer==0.15.1",
"rich==13.9.4",
"python-dotenv==1.0.1"
]
[project.urls]
Source = "https://github.com/torchbox/heroku-audit"
Issues = "https://github.com/torchbox/heroku-audit/issues"
Changelog = "https://github.com/torchbox/heroku-audit/releases"
[project.scripts]
heroku-audit = "heroku_audit.cli:app"
[project.optional-dependencies]
dev = [
"ruff==0.9.7",
"mypy==1.15.0",
"types-requests"
]
[tool.mypy]
mypy_path = "stubs"
warn_unused_ignores = true
warn_return_any = true
show_error_codes = true
strict_optional = true
implicit_optional = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
check_untyped_defs = true
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "A", "C4"]
ignore = ["E501"]