-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 1.13 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
[tool.poetry]
name = "runtime-type-checker"
version = "0.0.0"
description = "Runtime-type-checker performs type check at runtime with help of type annotations"
license = "MIT"
authors = ["PJCampi <[email protected]>"]
readme = "README.md"
repository="https://github.com/pjcampi/runtime-type-checker"
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "runtime_type_checker" },
{ include = "tests", format = "sdist" },
]
include = ["README.md", "LICENSE"]
[tool.poetry.dependencies]
python = "^3.6.1"
typing_inspect = "^0.9.0"
dataclasses = { version = "0.7", python = "~3.6" }
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
flake8 = "^3.8.1"
tox = "^3.15.0"
pytest-coverage = "^0.0"
mypy = "^0.770"
pre-commit = "^2.4.0"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry>=0.12", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"