-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 2.08 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TurboGears2"
version = "2.5.1dev1"
description = "Next generation TurboGears"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.10"
keywords = ["python", "web", "framework", "wsgi", "full-stack", "mvc", "mongodb", "sqlalchemy"]
classifiers = [
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
]
authors = [
{ name = "Alessandro Molina", email = "alessandro@molina.fyi" },
{ name = "Mark Ramm" },
{ name = "Christopher Perkins" },
{ name = "Jonathan LaCour" },
{ name = "Rick Copland" },
{ name = "Alberto Valverde" },
{ name = "Michael Pedersen" }
]
license = { text = "MIT" }
urls = { Homepage = "http://www.turbogears.org/" }
dependencies = [
"WebOb>=1.8.9,<1.10.0",
"crank>=0.8.0,<0.9.0",
"repoze.lru",
"MarkupSafe"
]
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov",
"zope.sqlalchemy>=0.4",
"repoze.who>=3.2.0rc1",
"Genshi>=0.5.1",
"Mako",
"WebTest",
"backlash>=0.3.0",
"raven",
"Beaker",
"sqlalchemy",
"jinja2",
"ming>=0.8.0",
"Kajiki>=0.4.4",
"formencode>=1.3.0a1"
]
[tool.setuptools.packages.find]
exclude = ["ez_setup", "examples", "tests", "tests.*"]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.pytest.ini_options]
addopts = "--cov=tg --cov-report lcov --cov-report term --cov-append"
[tool.ruff]
line-length = 88
target-version = "py38"
output-format = "grouped"
lint.select = ["E4", "E7", "E9", "F", "I001"]
# TODO: Maybe in the future we can enable checks for tests too.
exclude = ["build", "dist", "venv", "env", "__pycache__", "tests"]