-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to src-layout for code and move distribution metadata from setup.py to pyproject.toml.
- Loading branch information
Showing
33 changed files
with
56 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
include CHANGES.rst | ||
include .coveragerc | ||
include LICENSE | ||
include README.rst | ||
include Makefile | ||
include MANIFEST.in | ||
recursive-include pgallery/templates * | ||
recursive-include pgallery/locale * | ||
include README.rst | ||
include pyproject.toml | ||
include requirements.txt | ||
include test_requirements.txt | ||
include tox.ini | ||
graft src | ||
graft tests | ||
graft example_project | ||
global-exclude *.py[cod] __pycache__ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools>=68.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "django-pgallery" | ||
description = "Photo gallery app for PostgreSQL and Django." | ||
readme = "README.rst" | ||
requires-python = ">=3.9" | ||
authors = [{name="Zbigniew Siciarz", email="[email protected]"}] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Framework :: Django", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Framework :: Django :: 5.1", | ||
"Topic :: Utilities", | ||
] | ||
dependencies = [ | ||
"Django>=4.2,<6.0", | ||
"Pillow>=10", | ||
"psycopg2>=2.8", | ||
"django-markitup>=4.0", | ||
"django-model-utils>=5.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
source = "https://github.com/zsiciarz/django-pgallery" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pgallery.__version__"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.12.0a1" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.