File: pyproject.toml

package info (click to toggle)
paperwork 2.2.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 166,664 kB
  • sloc: python: 44,775; makefile: 992; sh: 625; xml: 135
file content (35 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (2)
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
[project]
name = "openpaperwork-core"
description = "OpenPaperwork's core"
dynamic = ["version"]
authors = [
  {name = "Jerome Flesch", email = "jflesch@openpaper.work" },
]
license = {text = "GPL-3.0-or-later"}
readme = {file = "README.md", content-type = "text/markdown"}

dependencies = [
  "certifi",
  "distro",
]

[project.optional-dependencies]
dev = [
  "pytest",
]
lint = [
  "flake8",
]

[tool.setuptools]
include-package-data = true

[tool.setuptools_scm]
root = ".."
relative_to = "__file__"
version_file = "src/openpaperwork_core/_version.py"
version_scheme = "post-release"

[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"