-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
91 lines (80 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-sequencefield"
description = "Additional field from django taking it's value from a postgresql sequence. It is similar to django AutoField, except that multiple model can share ids from a single sequence. Also add the possibility to generate an id from a sequence AND from the data of another field in the model"
authors = [
{ name = "Loic Quertenmont", email = "[email protected]" },
]
keywords = [
"django",
"postgresql",
"sequence",
"field",
"autofield",
"python",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
]
dynamic = ["version"]
maintainers = [
{ name = "Loic Quertenmont", email = "[email protected]" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.txt"
content-type = "text/plain"
[project.urls]
Homepage = "https://github.com/quertenmont/django-sequencefield"
Download = "https://github.com/quertenmont/django-sequencefield/releases"
Documentation = "https://github.com/quertenmont/django-sequencefield#readme"
Issues = "https://github.com/quertenmont/django-sequencefield/issues"
Funding = "https://github.com/sponsors/quertenmont/"
Twitter = "https://twitter.com/LoicQuertenmont"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
)/
'''
[tool.ruff]
ignore = []
line-length = 88
select = ["B", "B9", "C", "E", "F", "W"]
[tool.ruff.mccabe]
max-complexity = 10
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "test.settings"
[tool.setuptools.packages.find]
include = ["sequencefield*"]
[tool.setuptools.dynamic.version]
attr = "sequencefield.metadata.__version__"