-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpyproject.toml
36 lines (33 loc) · 1015 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "sphinx_autobuild"
dist-name = "sphinx-autobuild"
description-file = "README.md"
author = "Jonathan Stoppani"
author-email = "jonathan@stoppani.name"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
home-page = "https://github.com/executablebooks/sphinx-autobuild"
license = "MIT"
requires-python = ">=3.6"
requires = [
"sphinx",
"livereload",
]
[tool.flit.scripts]
sphinx-autobuild = "sphinx_autobuild.__main__:main"
[tool.flit.metadata.requires-extra]
test = ["pytest", "pytest-cov"]
docs = []