-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 862 Bytes
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
[tool.poetry]
name = "pvv"
version = "1.0.0"
description = "Minimal Python decorator to enforce type validation from type hints"
authors = ["mianfg <hello@mianfg.me>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/mianfg/pvv"
documentation = "https://github.com/mianfg/pvv/README.md"
keywords = ["typing", "validator", "decorator", "validate"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"