-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
73 lines (68 loc) · 2.17 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
[tool.poetry]
name = "django-pattern-library"
version = "1.2.0"
description = "A module for Django that allows to build pattern libraries for your projects."
authors = [
"Ben Dickinson <[email protected]>",
"Thibaud Colas <[email protected]>",
]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/torchbox/django-pattern-library"
documentation = "https://torchbox.github.io/django-pattern-library/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
packages = [
{ include = "pattern_library" },
]
include = [
'pattern_library/static/pattern_library/dist/bundle.js',
]
exclude = [
'pattern_library/static/pattern_library/src/**/*',
]
[tool.poetry.urls]
"Demo" = "https://torchbox.github.io/django-pattern-library/demo/"
"Support" = "https://github.com/torchbox/django-pattern-library/discussions"
"Issues" = "https://github.com/torchbox/django-pattern-library/issues"
[tool.poetry.dependencies]
python = "^3.9"
Django = ">=4.2,<5.2"
PyYAML = ">=5.1,<7.0"
Markdown = "^3.1"
[tool.poetry.dev-dependencies]
beautifulsoup4 = "^4.8"
coverage = "^7.4"
flake8 = {version = "^7.0", python = ">=3.8.1,<4.0"}
isort = "^5.10.1"
mkdocs = "^1.1.2"
mkdocs-material = "^5.5.14"
pymdown-extensions = "^8.0"
mkdocs-git-revision-date-plugin = "^0.3.1"
mkdocs-redirects = "^1.0.3"
black = "^22.3.0"
[tool.isort]
known_first_party = "pattern_library"
known_django = "django"
skip = ".tox,venv,migrations,node_modules"
skip_gitignore = true
sections = "FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"