-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.21 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"typediter" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[project]
name = "typediter"
version = "1.0.0"
authors = [
{ name = 'Didier Martin', email = 'didier.martin.dev@gmail.com' }
]
description = "Type-safe versions of Python's builtin iterables"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"type safe", "type-safe", "type-hints", "type-checking",
"typed", "iterable", "iterables",
"list", "tuple", "set", "frozenset",
]
requires-python = ">=3.11"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/Nebulaevo/typediter"
Issues = "https://github.com/Nebulaevo/typediter/issues"
Changelog = "https://github.com/Nebulaevo/typediter/blob/main/CHANGELOG.md"