Packaging fixes

This commit is contained in:
badblocks 2025-05-08 21:08:12 -07:00
parent fa6103d007
commit 959b06c425
19 changed files with 389 additions and 68 deletions

View file

@ -1,9 +1,31 @@
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pkmntrade-club"
version = "0.1.0"
description = "A website for trading Pokémon TCG Pocket Cards"
description = "A django project for trading Pokémon TCG Pocket Cards"
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "badblocks", email = "rob@badblocks.email" },
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"asgiref==3.8.1",
"certifi==2022.12.7",
@ -12,13 +34,14 @@ dependencies = [
"crispy-tailwind==1.0.3",
"cryptography==39.0.1",
"defusedxml==0.7.1",
"django==5.1.2",
"django==5.1",
"django-allauth==65.0.2",
"django-browser-reload==1.17.0",
"django-crispy-forms==2.3",
"django-daisy==1.0.13",
"django-debug-toolbar==4.4.6",
"django-environ==0.12.0",
"django-linear-migrations>=2.17.0",
"django-meta==2.4.2",
"django-tailwind-4[reload]==0.1.4",
"django-widget-tweaks==1.5.0",
@ -41,5 +64,22 @@ dependencies = [
"typing-extensions==4.9.0",
"urllib3==1.26.14",
"whitenoise==6.7.0",
"django-linear-migrations>=2.17.0",
]
[project.scripts]
pkmntrade-manage = "manage:main"
[project.urls]
Homepage = "https://pkmntrade.club"
[tool.setuptools]
packages = [
"accounts",
"cards",
"common",
"django_project",
"home",
"static",
"theme",
"trades"
]