-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpyproject.toml
79 lines (71 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "django-static-precompiler"
version = "3.0a1"
description = "Django template tags to compile all kinds of static files (SASS, LESS, Stylus, CoffeeScript, Babel, LiveScript, Handlebars)."
authors = ["Andrey Fedoseev <[email protected]>"]
license = "MIT"
readme = ["README.md", "CHANGES.md"]
homepage = "https://github.com/andreyfedoseev/django-static-precompiler"
repository = "https://github.com/andreyfedoseev/django-static-precompiler"
documentation = "https://django-static-precompiler.readthedocs.io/"
keywords = ["django", "sass", "scss"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 3",
"Framework :: Django :: 4",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP"
]
packages = [
{include = "static_precompiler", from = "src"}
]
include = [
{path = "AUTHORS"},
{path = "README.md"},
{path = "CHANGES.md"},
{path = "LICENSE"},
{path = "py.typed"},
{ path = "tests", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.8"
Django = "^3.2.0"
libsass = {version = "*", optional = true}
watchdog = {version = "*", optional = true}
[tool.poetry.group.test.dependencies]
pytest = "~7.4.0"
pytest-django = "~4.5.0"
libsass = "~0.22.0"
pytest-cov = "~4.0.0"
pytest-mock = "~3.11.1"
watchdog = "~3.0.0"
coverage = "~7.3.0"
tox = "~4.9.0"
pyright = "^1.1.323"
django-stubs = "~4.2.3"
[tool.poetry.extras]
libsass = ["libsass"]
watchdog = ["watchdog"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.ruff]
select = ["F", "E", "W", "I", "YTT", "B", "C4", "T10", "SIM", "ERA", "RUF", "UP"]
ignore = ["RUF001", "RUF012"]
line-length = 120
target-version = "py38"
[tool.ruff.isort]
known-first-party = ["static_precompiler"]
[tool.pyright]
include = ["src"]
exclude = ["__pycache__"]
pythonVersion = "3.8"