-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 870 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "plucker"
description = "validate, map and reduce regularly structured data into dataclasses"
version = "0.1.0"
license = "MIT"
authors = []
readme = "README.md"
repository = "https://github.com/takkaria/plucker"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
mypy = "^0.812"
safety = "^1.10"
pytest = "^6.2"
pytest-cov = "^2.11"
pytest-randomly = "^3.5"
sphinx = "^3.5"
sphinx-autodoc-typehints = "^1.11"
doc8 = "^0.8"
m2r2 = "^0.2"
tomlkit = "^0.7"
flake8 = "^3.9.0"
black = "^20.8b1"
flake8-docstrings = "^1.6.0"