-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
46 lines (39 loc) · 983 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
38
39
40
41
42
43
44
45
46
[tool.black]
line-length = 119
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
(
migrations/*.py
)
'''
[tool.poetry]
name = "django-reactive"
version = "0.0.12"
description = "Django JSON form field on steroids"
authors = ["Artem Kolesnikov <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/tyomo4ka/django-reactive"
repository = "https://github.com/tyomo4ka/django-reactive"
documentation = "https://github.com/tyomo4ka/django-reactive"
keywords = ["django",
"postgres",
"json",
"jsonschema",
"react"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
jsonschema = "^3.0||^4.0"
psycopg2-binary = "^2.7||^3.0"
django = "^3.2||^4.0"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.1"
mock = "^5.0"
pytest = "^7.2"
pytest-cov = "^4.0"
pytest-django = "^4.5"
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"