-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 915 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "django-plugin-blog"
version = "0.1.1"
description = "A simple blog implemented as a DJP plugin"
readme = "README.md"
authors = [{name = "Simon Willison"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"django",
"Markdown",
"djp>=0.1",
]
[project.urls]
Homepage = "https://github.com/simonw/django-plugin-blog"
Changelog = "https://github.com/simonw/django-plugin-blog/releases"
Issues = "https://github.com/simonw/django-plugin-blog/issues"
CI = "https://github.com/simonw/django-plugin-blog/actions"
[tool.setuptools.package-data]
"*" = ["*.html", "*.js", "*.css"]
[project.entry-points.djp]
django_plugin_blog = "django_plugin_blog"
[project.optional-dependencies]
test = ["pytest", "pytest-django"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.test_project.settings"
pythonpath = ["."]