-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.01 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
[tool.poetry]
name = "validate-it"
version = "0.11.2"
description = "Ultimate data validation tool built on top of the typing module"
authors = ["Ruslan Roskoshny <i.am.yarger@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ruslux/validate-it"
homepage = "https://github.com/ruslux/validate-it"
keywords= ["schema", "validator", "json", "typing"]
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
pytest-cov = "^2.10.1"
python-box = "^5.1.1"
accordion = "^0.2.3"
isort = "^5.6.4"
tox = "^3.20.1"
pylint = "^2.6.0"
mypy = "^0.790"
[build-system]
requires = [
"poetry>=0.12"
]
build-backend = "poetry.masonry.api"