-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (77 loc) · 1.6 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.4,<4"]
[project]
authors = [{name = "xinetzone", email = "[email protected]"}]
dynamic = ["version", "description"]
license = {file = "LICENSE"}
name = "xyzstyle"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"d2py",
"sphinx_book_theme"
]
maintainers = [
{name = "xinetzone", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Home = "https://github.com/xinetzone/xyzstyle"
[project.optional-dependencies]
doc = [
"invoke",
"myst-nb",
"sphinx",
"sphinxext-rediraffe",
"sphinx-copybutton",
"sphinx_design",
# 'jupyterlite-sphinx',
# "jupyterlite-xeus",
# "jupyterlite-core",
# "jupyterlite-pyodide-kernel",
"jupyterlab",
"jupyter_server",
"jupyterlab_server",
"sphinx-autoapi",
"linkify-it-py",
"sphinx-sitemap",
"sphinxcontrib-katex",
"sphinx-thebe",
"libarchive-c",
"jupyterlite-sphinx",
"jupyterlite-pyodide-kernel",
"jupyterlite-xeus",
"voici",
]
coverage = [
"pytest-cov",
"pytest-regressions",
"codecov",
"xyzstyle[test]",
]
dev = [
"pyyaml",
"pre-commit",
"xyzstyle[coverage]",
]
test = [
"pytest",
"xyzstyle[doc]",
]
docx = [
"python-docx",
"xyzstyle[doc]"
]
[project.entry-points]
"sphinx.html_themes" = {xyzstyle = "xyzstyle"}
[tool.flit.sdist]
# include = ["doc/"]
exclude = ['doc', '.git', '.github']