-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (34 loc) · 940 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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-gitstamp"
description = "git timestamp generator for Sphinx"
authors = [
{name = "Jared Dillard", email = "jared.dillard@gmail.com"},
]
maintainers = [
{name = "Jared Dillard", email = "jared.dillard@gmail.com"},
]
classifiers=[
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Documentation :: Sphinx",
]
license = {text = "MIT"}
readme = "README.rst"
dynamic = [
"version",
]
[project.urls]
download = "https://pypi.org/project/sphinx-gitstamp/"
source = "https://github.com/jdillard/sphinx-gitstamp"
[tool.isort]
profile = "black"