-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
35 lines (32 loc) · 1.02 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinxemoji"
description = "An extension to use emoji codes in your Sphinx documentation"
dynamic = ["version"]
authors = [
{name = "Miguel Sánchez de León Peque", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Framework :: Sphinx :: Extension",
]
dependencies = [
"sphinx>=5.0",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://sphinxemojicodes.readthedocs.io"
Repository = "https://github.com/sphinx-contrib/emojicodes"
Documentation = "https://sphinxemojicodes.readthedocs.io"
Issues = "https://github.com/sphinx-contrib/emojicodes/issues"
[tool.setuptools.dynamic]
version = {attr = "sphinxemoji.__version__"}