-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.13 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
[tool.poetry]
name = "django-js-choices"
version = "0.6.0"
description = "Javascript model field choices handling for Django."
license = "MIT"
authors = ["Lorenzo Peña <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/lorinkoz/django-js-choices"
keywords = ["django", "choices", "javascript"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
[tool.poetry.dependencies]
python = "^3.10"
django = ">=5.0,<6.0"
rjsmin = "^1.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
coverage = {extras = ["toml"], version = "^6.3"}
django-multiselectfield = "^0.1.12"
dukpy = "^0.4.0"
flake8 = "^6.0.0"
flake8-bugbear = "^23.3.23"
flake8-comprehensions = "^3.12.0"
flake8-no-types = "^1.5.1"
flake8-tidy-imports = "^4.8.0"
isort = "^5.12.0"
dj-inmemorystorage = "^2.1.0"
[tool.black]
line-length = 120
[tool.isort]
atomic = true
combine_as_imports = true
line_length = 120
profile = "black"
[tool.coverage.run]
source = ["django_js_choices"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"