-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 894 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
[tool.poetry]
name = "django-copyist"
version = "0.1.3"
description = "Tool for precise and efficient django model copying"
authors = ["abondar"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/abondar/django-copyist"
repository = "https://github.com/abondar/django-copyist.git"
documentation = "https://abondar.github.io/django-copyist/"
keywords = ["django", "copy", "clone", "model"]
packages = [
{ include = "django_copyist" }
]
include = ["CHANGELOG.rst", "LICENSE", "README.rst"]
[tool.poetry.dependencies]
python = "^3.11"
Django = ">=3.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
pytest = "^8.1.1"
factory-boy = "^3.3.0"
pytest-django = "^4.8.0"
sphinx = "^7.3.7"
sphinx-book-theme = "^1.1.2"
enum-tools = {extras = ["sphinx"], version = "^0.12.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"