2024-07-12 00:17:15 -05:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "WuttaWeb"
|
2024-08-20 15:05:12 -05:00
|
|
|
version = "0.11.0"
|
2024-07-12 00:17:15 -05:00
|
|
|
description = "Web App for Wutta Framework"
|
2024-07-12 21:54:36 -05:00
|
|
|
readme = "README.md"
|
2024-07-12 00:17:15 -05:00
|
|
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
|
|
|
license = {text = "GNU GPL v3+"}
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Pyramid",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
dependencies = [
|
2024-08-12 21:17:08 -05:00
|
|
|
"ColanderAlchemy",
|
2024-08-16 18:19:24 -05:00
|
|
|
"paginate",
|
2024-08-18 14:05:10 -05:00
|
|
|
"paginate_sqlalchemy",
|
2024-07-12 00:17:15 -05:00
|
|
|
"pyramid>=2",
|
|
|
|
"pyramid_beaker",
|
2024-08-04 20:35:41 -05:00
|
|
|
"pyramid_deform",
|
2024-08-06 22:33:54 -05:00
|
|
|
"pyramid_fanstatic",
|
2024-07-12 00:17:15 -05:00
|
|
|
"pyramid_mako",
|
2024-08-05 11:45:00 -05:00
|
|
|
"pyramid_tm",
|
2024-07-12 00:17:15 -05:00
|
|
|
"waitress",
|
|
|
|
"WebHelpers2",
|
2024-08-15 21:14:52 -05:00
|
|
|
"WuttJamaican[db]>=0.12.0",
|
2024-08-04 15:34:23 -05:00
|
|
|
"zope.sqlalchemy>=1.5",
|
2024-07-12 00:17:15 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
docs = ["Sphinx", "furo"]
|
|
|
|
tests = ["pytest-cov", "tox"]
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."paste.app_factory"]
|
|
|
|
main = "wuttaweb.app:main"
|
|
|
|
|
|
|
|
|
2024-07-14 10:47:14 -05:00
|
|
|
[project.entry-points."wutta.app.providers"]
|
2024-07-13 20:03:44 -05:00
|
|
|
wuttaweb = "wuttaweb.app:WebAppProvider"
|
|
|
|
|
|
|
|
|
2024-07-12 00:17:15 -05:00
|
|
|
[project.urls]
|
2024-07-14 08:47:34 -05:00
|
|
|
Homepage = "https://wuttaproject.org/"
|
|
|
|
Repository = "https://forgejo.wuttaproject.org/wutta/wuttaweb"
|
|
|
|
Changelog = "https://forgejo.wuttaproject.org/wutta/wuttaweb/src/branch/master/CHANGELOG.md"
|
2024-07-12 00:17:15 -05:00
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|
|
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
exclude = [
|
|
|
|
"htmlcov/",
|
|
|
|
]
|