-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
60 lines (54 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "postgresql-audit"
dynamic = ["version"]
description = "Versioning and auditing extension for PostgreSQL and SQLAlchemy."
readme = "README.rst"
license = "bsd-2-clause"
requires-python = ">=3.8"
authors = [
{ name = "Konsta Vesterinen", email = "[email protected]" },
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"SQLAlchemy-Utils>=0.37.0",
"SQLAlchemy>=1.4",
]
[project.urls]
Homepage = "https://github.com/kvesteri/postgresql-audit"
[tool.hatch.version]
path = "postgresql_audit/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/CHANGES.rst",
"/docs",
"/postgresql_audit",
"/tests",
]
exclude = [
"/docs/_build",
]
[tool.isort]
known_first_party = ["postgresql_audit", "tests"]
line_length = 79
multi_line_output = 3
order_by_type = false
[tool.pytest.ini_options]
filterwarnings = [
'error:.*:DeprecationWarning:postgresql_audit',
]