-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (101 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
112 lines (101 loc) · 2.64 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[project]
name = "shuuten"
version = "0.2.0"
description = "Last-stop signals for automation failures."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Ritvik Nag", email = "me@ritviknag.com"}
]
maintainers = [
{name = "Ritvik Nag", email = "me@ritviknag.com"}
]
dependencies = []
keywords = [
"automation",
"notifications",
"alerts",
"slack",
"email",
"aws",
"lambda",
"ecs",
"observability",
"ops",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Topic :: Software Development :: Libraries",
# Specify the Python versions you support here.
"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",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
cli = [
"rich",
"typer",
]
docs = [
'mkdocs',
'mkdocs-material',
'mkdocs-github-admonitions-plugin',
'mkdocs-markdownextradata-plugin',
'mkdocs-macros-plugin',
'mkdocs-include-markdown-plugin',
]
lint = [
"ruff",
"ty", # checking types
]
test = [
"pytest", # testing
"pytest-cov", # testing
"coverage", # testing
]
dev = [
"bump-my-version==1.2.5",
"ipdb", # debugging
]
email = ["boto3"]
# slack = ["slack_sdk"] # only if I decide to support Slack Web API; webhooks don't need this
[project.urls]
Homepage = "https://github.com/rnag/shuuten"
Documentation = "https://shuuten.ritviknag.com"
Repository = "https://github.com/rnag/shuuten.git"
Issues = "https://github.com/rnag/shuuten/issues"
Changelog = "https://github.com/rnag/shuuten/blob/main/CHANGELOG.md"
# Consider removing this until I want a CLI-first experience
# [project.scripts]
# shuuten = "shuuten.cli:app"
[tool.ty]
# All rules are enabled as "error" by default; no need to specify unless overriding.
# Example override: relax a rule for the entire project (uncomment if needed).
# rules.TY015 = "warn" # For invalid-argument-type, warn instead of error.
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
[tool.uv]
package = true