-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.67 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xorgdata"
dynamic = ["version"]
description = "Polytechnique.org central datastore"
readme = "README.rst"
license = { text = "AGPL-3.0" }
authors = [
{ name = "Polytechnique.org dev team", email = "devel+xorgdata@staff.polytechnique.org" },
]
requires-python = ">=3.11"
dependencies = [
"Django~=5.2",
"getconf",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: French",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
[project.urls]
Homepage = "https://github.com/Polytechnique-org/xorgdata"
[tool.setuptools.dynamic]
version = { attr = "xorgdata.__version__" }
[tool.setuptools.packages.find]
include = ["xorgdata", "xorgdata.*"]
# ---------------------------------------------------------------------------
# Ruff
# ---------------------------------------------------------------------------
[tool.ruff]
line-length = 119
target-version = "py312"
exclude = ["migrations"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = []
# ---------------------------------------------------------------------------
# Coverage
# ---------------------------------------------------------------------------
[tool.coverage.run]
source = ["xorgdata"]
branch = true
[tool.coverage.report]
show_missing = true