-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
58 lines (54 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
[project]
name = "sphinx-nekochan"
dynamic = ["version"]
description = "A Sphinx extension for adding the Nekochan(cat) emoji to documents."
authors = [{name = "Takanori Suzuki", email = "takanori@takanory.net"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
keywords = ["sphinx", "extension"]
requires-python = ">=3.10"
dependencies = [
"sphinx>=8.0",
]
[project.urls]
Documentation = "https://sphinx-nekochan.readthedocs.io/"
Repository = "https://github.com/takanory/sphinx-nekochan"
[project.optional-dependencies]
docs = [
"furo>=2024.8.6 ",
"matplotlib>=3.10.0",
"myst-parser>=4.0.0",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
"sphinx-revealjs==3.1.1",
"sphinxext-opengraph>=0.9.1",
]
dev = [
"ruff>=0.8.6",
]
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = ["sphinx_nekochan/"]
exclude = [
"sphinx_nekochan/make_nekochan_json.py",
"sphinx_nekochan/data/aliases.json",
"sphinx_nekochan/data/*.zip",
]