forked from django-commons/django-tailwind-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (71 loc) · 2.05 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
80
81
[tool.poetry]
name = "django-tailwind-cli"
version = "1.0.1"
description = "Django and Tailwind integration based on the prebuilt Tailwind CSS CLI."
license = "MIT"
authors = ["Oliver Andrich <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/oliverandrich/django-tailwind-cli"
repository = "https://github.com/oliverandrich/django-tailwind-cli"
keywords = ["django", "tailwind", "css"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1"
]
packages = [{include = "django_tailwind_cli", from = "src"}]
[tool.poetry.urls]
"Twitter" = "https://twitter.com/oliverandrich"
"Mastodon" = "https://2pxnl.de/@oliver"
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2"
certifi = "^2022.9.24"
django-click = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-django = "^4.5.2"
django-types = "^0.16.0"
pytest-randomly = "^3.12.0"
pytest-timeout = "^2.1.0"
tox = "^3.27.0"
tox-py = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ["py38"]
line-length = 100
[tool.isort]
profile = "black"
add_imports = "from __future__ import annotations"
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "strict"
[tool.pytest.ini_options]
pythonpath=[".", "src"]
addopts = """\
--strict-config
--strict-markers
--ds=tests.settings
"""
django_find_project = false
[tool.coverage.run]
omit = [
"*/tests/*",
"conftest.py",
]
[tool.poetry_bumpversion.file."src/django_tailwind_cli/__init__.py"]