Notfellchen/pyproject.toml

67 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-03-17 10:26:32 +00:00
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "notfellchen"
description = "A tool to help."
authors = [
{name = "moanos", email = "julian-samuel@gebuehr.net"},
]
maintainers = [
{name = "moanos", email = "julian-samuel@gebuehr.net"},
]
2024-05-10 11:54:16 +00:00
keywords = ["animal", "adoption", "django", "rescue", ]
2024-03-17 10:26:32 +00:00
license = {text = "AGPL-3.0-or-later"}
classifiers = [
"Environment :: Web",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
]
dependencies = [
"Django",
"coverage",
"codecov",
"sphinx",
"sphinx-rtd-theme",
"gunicorn",
"fontawesomefree",
2024-03-18 07:26:21 +00:00
"whitenoise",
2024-03-18 15:41:22 +00:00
"model_bakery",
"markdown",
2024-03-18 16:10:48 +00:00
"Pillow",
2024-04-13 09:54:51 +00:00
"django-registration",
"psycopg2",
2024-04-24 18:48:02 +00:00
"django-crispy-forms",
"crispy-bootstrap4",
2024-10-09 19:54:31 +00:00
"djangorestframework",
"celery[redis]"
2024-03-17 10:26:32 +00:00
]
2024-03-17 10:26:32 +00:00
dynamic = ["version", "readme"]
[project.optional-dependencies]
develop = [
"pytest",
]
2024-03-17 10:26:32 +00:00
[project.urls]
2024-10-03 06:45:55 +00:00
homepage = "https://notfellchen.org"
repository = "https://codeberg.org/moanos/notfellchen/"
2024-03-17 10:26:32 +00:00
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
nf = 'notfellchen.main:main'
2024-03-17 10:26:32 +00:00
[tool.setuptools.dynamic]
version = {attr = "notfellchen.__version__"}
readme = {file = "README.md"}