-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.27 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
[build-system]
requires = [ "poetry-core==1.8.3",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tailwind-merge"
version = "0.3.2"
description = "Merge Tailwind CSS classes without conflicts in python."
authors = [ "Will Abbott <willabb83@gmail.com>",]
license = "MIT"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [ "python", "tailwind", "css", "merge"]
exclude = []
packages = [{include = "tailwind_merge"}]
[tool.black]
line-length = 100
exclude = "/(\n \\.git\n | \\.mypy_cache\n | \\\\.tox\n | \\\\.venv\n | _build\n | buck-out\n | build\n | dist\n | venv\n)/\n"
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
[tool.poetry.urls]
"Homepage" = "https://github.com/wrabit/tailwind-merge-python"
"Bug Tracker" = "https://github.com/wrabit/tailwind-merge-python/issues"