forked from yoyowallet/drf-react-template-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.35 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
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "drf-react-template-framework"
version = "0.0.1"
description = "Django REST Framework plugin that creates form schemas for react-jsonschema-form"
authors = ["stuart.bradley <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yoyowallet/drf-react-template-framework"
repository = "https://github.com/yoyowallet/drf-react-template-framework"
keywords = ["drf", "react"]
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Framework :: Django',
]
include = [
"LICENSE",
]
packages = [
{ include="drf_react_template" },
]
[tool.poetry.dependencies]
python = "^3.7"
djangorestframework = ">=3.8.0,<4.0.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.7.1"
pytest = "^6.1.1"
pytest-django = "^3.10.0"
factory-boy = "^3.1.0"
pytest-cov = "^2.10.1"
[tool.black]
include = '\.pyi?$'
skip-string-normalization = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE='example.settings'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"