forked from adamghill/django-unicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.36 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
[tool.poetry]
name = "django-unicorn"
version = "0.18.1"
description = "A magical full-stack framework for Django."
authors = ["Adam Hill <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/adamghill/django-unicorn/"
homepage = "https://www.django-unicorn.com"
keywords = ["django", "python", "javascript", "fullstack"]
[tool.poetry.dependencies]
python = "^3.6"
django = ">=3.0.0"
beautifulsoup4 = ">=4.8.0"
orjson = "^3.2.1"
shortuuid = "^1.0.1"
wrapt = "^1.12.1"
cachetools = "^4.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^19.10b0"
flake8 = "^3.8.3"
isort = "^5.0.9"
mypy = "<0.780"
django-stubs = "^1.5.0"
pytest-django = "^3.9.0"
bpython = "^0.19"
django-mock-queries = "^2.1.5"
pydantic = "^1.7.3"
pywatchman = "^1.4.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
default_section = "THIRDPARTY"
known_first_party = ["django_unicorn", "example"]
known_django = "django"
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
lines_after_imports = 2
multi_line_output = 3
include_trailing_comma = true
skip_glob = "*/migrations/*.py"
profile = "black"
[tool.pytest.ini_options]
addopts = "--quiet --failed-first --reuse-db --nomigrations -p no:warnings -m 'not slow'"
testpaths = [
"tests"
]
markers = [
"slow: marks tests as slow",
]