-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.08 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
42
43
44
45
46
47
48
[tool.poetry]
name = "castutils"
version = "0.0.0"
description = "Variable transformation and casting utilities (Python)"
authors = ["Shane Spencer <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/whardier/castutils-python"
repository = "https://github.com/whardier/castutils-python"
keywords = [
"cast",
"coerce",
"coercion",
"transform",
"transformation",
"typing",
"typecast",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/whardier"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
flake8 = "^4.0.1"
isort = "^5.10.1"
pre-commit = "^2.16.0"
mypy = "^0.930"
autoflake = "^1.4"
pytest = "^6.2.5"
hypothesis = "^6.34.1"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"