-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.48 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "switchlang"
version = "0.1.3"
description = "Adds switch blocks to the Python language."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"switch",
"switch-statement",
"switch-case",
"case",
"match",
"control-flow",
"syntax",
"language",
]
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Michael Kennedy", email = "michael@talkpython.fm" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.15",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/mikeckennedy/python-switch"
Documentation = "https://mkennedy.codes/docs/python-switch"
Repository = "https://github.com/mikeckennedy/python-switch"
Issues = "https://github.com/mikeckennedy/python-switch/issues"
PyPI = "https://pypi.org/project/switchlang/"
Funding = "https://github.com/sponsors/mikeckennedy"
[project.optional-dependencies]
dev = [
"pytest",
"great-docs; python_version >= '3.11'",
]
[tool.hatch.build.targets.wheel]
packages = ["switchlang"]