-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.66 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tetra"
dynamic = ["version"]
description = "Full stack component framework for Django using Alpine.js"
authors = [
{ name = "Sam Willis", email="sam.willis@gmail.com"},
{ name = "Christian González", email = "christian.gonzalez@nerdocs.at" }
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["python", "django", "framework", "components"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cryptography>=37.0.1",
"Django>=3.2.0",
"python-dateutil>=2.8.2",
"sourcetypes>=0.0.4",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://tetraframework.com"
Documentation = "https://tetra.readthedocs.io"
Repository = "https://github.com/tetra-framework/tetra"
[project.optional-dependencies]
dev = [
"build",
"twine",
"pytest",
"pytest-django",
"pre-commit",
"black",
"python-dateutil>=2.8.2",
"beautifulsoup4",
"tetra[demo]", # include all the demo packages too
"tetra[doc]"
]
demo = [
"PyYAML>=6.0",
"markdown>=3.3.7",
"gunicorn",
"django-environ",
"whitenoise>=6.6.0",
"PyYAML>=6.0",
"markdown>=3.3.7",
]
doc = [
"mkdocs",
"mkdocs-material",
"pymdown-extensions",
"pygments",
"mkdocstrings[python]",
]
[tool.setuptools.dynamic]
version = {attr = "tetra.__version__"}
[tool.setuptools.packages.find]
exclude = ["docs", "tests", "demosite"]
[tool.pytest.ini_options]
addopts = "--nomigrations"