forked from timonweb/django-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1.26 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
[tool.poetry]
name = "django-tailwind"
version = "3.5.0"
description = "Tailwind CSS Framework for Django projects"
authors = ["Tim Kamanin <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/timonweb/django-tailwind"
keywords = ["django", "tailwind", "css"]
classifiers = [
"Development Status :: 4 - Beta",
"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"
]
packages = [
{ include = "tailwind", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.8.1"
django = ">=3.2.14"
django-browser-reload = "^1.6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
pytest-django = "^4.5.2"
tox = "^4.4.5"
pre-commit = "^3.0.4"
isort = "^5.12.0"
flake8 = "^6.0.0"
black = "^23.1.0"
Sphinx = "^4.3.1"
recommonmark = "^0.7.1"
sphinx-rtd-theme = "^1.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"