-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.11 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "olinguito"
dynamic = ["version"]
description = "A Python function decorator generating JSON schema based on signatures."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Jun Komoda"}
]
keywords = ["json", "schema", "signature"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
]
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/junkmd/olinguito"
Repository = "https://github.com/junkmd/olinguito"
[tool.setuptools.dynamic]
version = {attr = "olinguito.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["."]
include = ["olinguito"]
[tool.setuptools.package-data]
"olinguito" = ["py.typed"]