-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.16 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
[project]
name = "django_soft_atomic"
authors = [
{ name="Mariusz Okulanis", email="mariusz.okulanis@gmail.com" },
]
description = "A more forgiving variation of django's transaction handling, allowing you to pass some exceptions through atomic block without rollback."
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
dependencies = [
"Django>=3.2",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Utilities",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/maniek2332/django_soft_atomic"
"Bug Tracker" = "https://github.com/maniek2332/django_soft_atomic/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"django_soft_atomic.py"
]
[tool.hatch.version]
path = "django_soft_atomic.py"