2024-07-09 16:45:36 -05:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Tailbone"
|
2024-11-18 14:08:10 -06:00
|
|
|
version = "0.22.2"
|
2024-07-09 16:45:36 -05:00
|
|
|
description = "Backoffice Web Application for Rattail"
|
2024-09-13 18:16:07 -05:00
|
|
|
readme = "README.md"
|
2024-07-09 16:45:36 -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 :: Office/Business",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
dependencies = [
|
|
|
|
"asgiref",
|
|
|
|
"colander",
|
|
|
|
"ColanderAlchemy",
|
|
|
|
"cornice",
|
|
|
|
"cornice-swagger",
|
|
|
|
"deform",
|
|
|
|
"humanize",
|
|
|
|
"Mako",
|
|
|
|
"markdown",
|
|
|
|
"openpyxl",
|
|
|
|
"paginate",
|
|
|
|
"paginate_sqlalchemy",
|
|
|
|
"passlib",
|
|
|
|
"Pillow",
|
|
|
|
"pyramid>=2",
|
|
|
|
"pyramid_beaker",
|
|
|
|
"pyramid_deform",
|
|
|
|
"pyramid_exclog",
|
|
|
|
"pyramid_fanstatic",
|
|
|
|
"pyramid_mako",
|
|
|
|
"pyramid_retry",
|
|
|
|
"pyramid_tm",
|
2024-08-26 14:56:15 -05:00
|
|
|
"rattail[db,bouncer]>=0.18.5",
|
2024-07-09 16:45:36 -05:00
|
|
|
"sa-filters",
|
|
|
|
"simplejson",
|
|
|
|
"transaction",
|
|
|
|
"waitress",
|
|
|
|
"WebHelpers2",
|
2024-08-28 00:30:15 -05:00
|
|
|
"WuttaWeb>=0.14.0",
|
2024-07-09 16:45:36 -05:00
|
|
|
"zope.sqlalchemy>=1.5",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2024-07-12 09:35:34 -05:00
|
|
|
docs = ["Sphinx", "furo"]
|
2024-07-09 16:45:36 -05:00
|
|
|
tests = ["coverage", "mock", "pytest", "pytest-cov"]
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."paste.app_factory"]
|
|
|
|
main = "tailbone.app:main"
|
|
|
|
webapi = "tailbone.webapi:main"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.cleaners"]
|
|
|
|
beaker = "tailbone.cleanup:BeakerCleaner"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.config.extensions"]
|
|
|
|
tailbone = "tailbone.config:ConfigExtension"
|
|
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://rattailproject.org"
|
2024-09-14 12:49:37 -05:00
|
|
|
Repository = "https://forgejo.wuttaproject.org/rattail/tailbone"
|
|
|
|
Issues = "https://forgejo.wuttaproject.org/rattail/tailbone/issues"
|
|
|
|
Changelog = "https://forgejo.wuttaproject.org/rattail/tailbone/src/branch/master/CHANGELOG.md"
|
2024-07-09 16:45:36 -05:00
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|
|
|
|
|
|
|
|
|
|
|
|
[tool.nosetests]
|
|
|
|
nocapture = 1
|
|
|
|
cover-package = "tailbone"
|
|
|
|
cover-erase = 1
|
|
|
|
cover-html = 1
|
|
|
|
cover-html-dir = "htmlcov"
|