-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.68 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "piargus"
dynamic = ["version"]
authors = [
{name = "lverweijen", email = "[email protected]"}
]
description = "Python wrapper around TauArgus"
readme = "README.md"
requires-python = ">= 3.9"
keywords = [
"statistical-disclosure-control",
"tau-argus",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
license = {text = "Apache License 2.0"}
dependencies = [
"littletree>=0.6.2",
"pandas>=1.5",
]
[project.optional-dependencies]
export = [
"Pillow >= 5.0",
"matplotlib >= 3.0",
"svglib >= 1.5.0",
]
[project.urls]
Homepage = "https://github.com/lverweijen/piargus"
Repository = "https://github.com/lverweijen/piargus"
Documentation = "https://lverweijen.github.io/piargus"
Issues = "https://github.com/lverweijen/piargus/issues"
Changelog = "https://lverweijen.github.io/piargus/changes.html"
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py39"
src = ["src"]
[tool.ruff.format]
preview = true
[tool.setuptools_scm]
[dependency-groups]
dev = [
"ruff>=0.8.2",
"sphinx-rtd-theme>=3.0.2",
"sphinx>=7.4.7",
"myst>=1.0.4",
"myst-parser>=3.0.1",
"build>=1.2.2.post1",
]