kopia lustrzana https://github.com/rtts/django-simplecms
Tweak `pyproject.toml`
rodzic
a8b8bddc12
commit
03a71c583e
|
@ -1 +1,2 @@
|
||||||
|
__version__ = "1.1.2"
|
||||||
default_app_config = "cms.apps.CmsConfig"
|
default_app_config = "cms.apps.CmsConfig"
|
||||||
|
|
|
@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "django-simplecms"
|
name = "django-simplecms"
|
||||||
description = "Simple Django CMS"
|
description = "Simple Django-based CMS"
|
||||||
version = "1.1.2"
|
|
||||||
authors = [{name = "Jaap Joris Vens", email = "cms@jj.rtts.eu"}]
|
|
||||||
readme = "README.md"
|
|
||||||
requires-python = ">= 3.12"
|
requires-python = ">= 3.12"
|
||||||
|
dynamic = ["version"]
|
||||||
|
readme = "README.md"
|
||||||
|
authors = [{name = "Jaap Joris Vens", email = "jj@rtts.eu"}]
|
||||||
urls.source = "https://github.com/rtts/django-simplecms/"
|
urls.source = "https://github.com/rtts/django-simplecms/"
|
||||||
urls.issues = "https://github.com/rtts/django-simplecms/issues/"
|
urls.issues = "https://github.com/rtts/django-simplecms/issues/"
|
||||||
urls.changelog = "https://github.com/rtts/django-simplecms/releases/"
|
urls.changelog = "https://github.com/rtts/django-simplecms/releases/"
|
||||||
|
@ -19,13 +19,17 @@ classifiers = [
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"django",
|
"django",
|
||||||
"django-embed-video",
|
"django-embed-video",
|
||||||
"django-tidy",
|
"django-tidy", # requires Tidy (apt install tidy)
|
||||||
"easy-thumbnails",
|
"easy-thumbnails",
|
||||||
"libsass",
|
"libsass",
|
||||||
"markdown",
|
"markdown",
|
||||||
"psycopg",
|
"psycopg",
|
||||||
"pylibmc",
|
"pylibmc", # requires Memcached (apt install memcached)
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
simplecms = "cms.__main__:main"
|
simplecms = "cms.__main__:main"
|
||||||
|
|
||||||
|
[tool.setuptools]
|
||||||
|
packages = ["cms", "example"]
|
||||||
|
dynamic.version = {attr = "cms.__version__"}
|
||||||
|
|
Ładowanie…
Reference in New Issue