forked from crccheck/django-object-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.38 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "skytek-django-object-actions"
version = "5.2.0"
description = "A Django app for adding object tools for models in the admin"
authors = ["crccheck <[email protected]>", "Wiktor Latanowicz <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "django_object_actions" },
]
repository = "https://github.com/Skytek/django-object-actions"
keywords = ["django", "admin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
coverage = "6.*"
django-extensions = "3.*"
factory-boy = "3.*"
dj-database-url = "1.*"
[tool.semantic_release]
branch = "master"
version_toml = "pyproject.toml:tool.poetry.version"
version_variable = "django_object_actions/__init__.py:__version__"
build_command = "pip install poetry && poetry build"