-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1022 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "raidoc"
version = "1.2.0.10"
description = "Documentation for RAIMAD"
authors = [
{name = "maybetree", email = "[email protected]"}
]
license = { file = "LICENSE-GPL.txt" }
# idk how to specify multiple licenses, someone please fix.
#license-files = [
# { file = "LICENSE-GPL3.txt", text = "GNU GPL v3" },
# { file = "LICENSE-FDL.txt", text = "GNU FDL" },
# { file = "LICENSE-CC0.txt", text = "CC0" }
#]
readme = "README.md"
classifiers = [
'Programming Language :: Python :: 3',
]
requires-python = ">=3"
dependencies = [
'jinja2',
'libsass',
'marko[codehilite]',
'python-frontmatter',
'addict',
'ansi2html',
'reflink'
]
#[tool.setuptools.packages.find]
#include = [ "pycif", "pycif.*" ]
[tool.ruff.lint]
exclude = [
]
select = [
"E",
"F",
"D",
]
ignore = [
"D401", # don't complain about "imperative mood"
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"