-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (41 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sus"
version = "1.3.0"
dependencies = []
requires-python = ">=3.9"
authors = [
{name = "Nik Kantar", email = "nik@nkantar.com" },
]
description = "Really simple static website URL shortener"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.scripts]
sus = "src.sus:sus"
[tool.uv]
dev-dependencies = [
"ruff>=0.0.17",
"pytest>=8.3.2",
"pytest-mock>=3.14.0",
"pydocstyle>=6.3.0",
"mypy>=1.11.2",
"pdbpp>=0.10.3",
]