|
1 | 1 | [build-system] |
| 2 | +requires = ["flit-core>=3.7"] |
2 | 3 | build-backend = "flit_core.buildapi" |
3 | | -requires = [ |
4 | | - "flit-core>=3.7", |
5 | | -] |
6 | 4 |
|
| 5 | +# project metadata |
7 | 6 | [project] |
8 | 7 | name = "sphinx-autobuild" |
9 | 8 | description = "Rebuild Sphinx documentation on changes, with hot reloading in the browser." |
10 | 9 | readme = "README.rst" |
| 10 | +urls.Changelog = "https://github.com/sphinx-doc/sphinx-autobuild/blob/main/NEWS.rst" |
| 11 | +urls.Documentation = "https://github.com/sphinx-doc/sphinx-autobuild#readme" |
| 12 | +urls.Download = "https://pypi.org/project/sphinx-autobuild/" |
| 13 | +urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx-autobuild/issues" |
| 14 | +urls.Source = "https://github.com/sphinx-doc/sphinx-autobuild" |
11 | 15 | license.text = "MIT" |
12 | | -authors = [ |
13 | | - { name = "Adam Turner" }, |
14 | | - { name = "Jonathan Stoppani", email = "[email protected]" }, |
15 | | -] |
16 | 16 | requires-python = ">=3.11" |
| 17 | + |
| 18 | +# Classifiers list: https://pypi.org/classifiers/ |
17 | 19 | classifiers = [ |
18 | | - "Development Status :: 5 - Production/Stable", |
19 | | - "Environment :: Console", |
20 | | - "Environment :: Web Environment", |
21 | | - "Framework :: Sphinx", |
22 | | - "Intended Audience :: Developers", |
23 | | - "License :: OSI Approved :: MIT License", |
24 | | - "Operating System :: OS Independent", |
25 | | - "Programming Language :: Python", |
26 | | - "Programming Language :: Python :: 3 :: Only", |
27 | | - "Programming Language :: Python :: 3.11", |
28 | | - "Programming Language :: Python :: 3.12", |
29 | | - "Programming Language :: Python :: 3.13", |
30 | | - "Programming Language :: Python :: 3.14", |
31 | | - "Programming Language :: Python :: Implementation :: CPython", |
32 | | - "Programming Language :: Python :: Implementation :: PyPy", |
33 | | - "Topic :: Documentation", |
34 | | - "Topic :: Documentation :: Sphinx", |
35 | | - "Topic :: Software Development", |
36 | | - "Topic :: Software Development :: Documentation", |
37 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
38 | | - "Topic :: Utilities", |
39 | | -] |
40 | | -dynamic = [ |
41 | | - "version", |
| 20 | + "Development Status :: 5 - Production/Stable", |
| 21 | + "Environment :: Console", |
| 22 | + "Environment :: Web Environment", |
| 23 | + "Framework :: Sphinx", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + "Operating System :: OS Independent", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3 :: Only", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Programming Language :: Python :: 3.13", |
| 33 | + "Programming Language :: Python :: 3.14", |
| 34 | + "Programming Language :: Python :: Implementation :: CPython", |
| 35 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 36 | + "Topic :: Documentation", |
| 37 | + "Topic :: Documentation :: Sphinx", |
| 38 | + "Topic :: Software Development", |
| 39 | + "Topic :: Software Development :: Documentation", |
| 40 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 41 | + "Topic :: Utilities", |
42 | 42 | ] |
43 | 43 | dependencies = [ |
44 | | - "colorama>=0.4.6", |
45 | | - "sphinx", |
46 | | - "starlette>=0.35", |
47 | | - "uvicorn>=0.25", |
48 | | - "watchfiles>=0.20", |
49 | | - "websockets>=11", |
50 | | -] |
51 | | -optional-dependencies.docs = [ |
| 44 | + "colorama>=0.4.6", |
| 45 | + "Sphinx", |
| 46 | + "starlette>=0.35", |
| 47 | + "uvicorn>=0.25", |
| 48 | + "watchfiles>=0.20", |
| 49 | + "websockets>=11", |
52 | 50 | ] |
53 | | -optional-dependencies.test = [ |
54 | | - "httpx", |
55 | | - "pytest>=6", |
| 51 | +dynamic = ["version"] |
| 52 | + |
| 53 | +[project.optional-dependencies] |
| 54 | +docs = [] |
| 55 | +test = [ |
| 56 | + "httpx", |
| 57 | + "pytest>=6", |
56 | 58 | ] |
57 | | -urls.Changelog = "https://github.com/sphinx-doc/sphinx-autobuild/blob/main/NEWS.rst" |
58 | | -urls.Documentation = "https://github.com/sphinx-doc/sphinx-autobuild#readme" |
59 | | -urls.Download = "https://pypi.org/project/sphinx-autobuild/" |
60 | | -urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx-autobuild/issues" |
61 | | -urls.Source = "https://github.com/sphinx-doc/sphinx-autobuild" |
62 | | -scripts.sphinx-autobuild = "sphinx_autobuild.__main__:main" |
| 59 | + |
| 60 | +[[project.authors]] |
| 61 | +name = "Adam Turner" |
| 62 | + |
| 63 | +[[project.authors]] |
| 64 | +name = "Jonathan Stoppani" |
| 65 | + |
| 66 | + |
| 67 | +[project.scripts] |
| 68 | +sphinx-autobuild = "sphinx_autobuild.__main__:main" |
63 | 69 |
|
64 | 70 | [tool.flit.sdist] |
65 | 71 | include = [ |
66 | | - "AUTHORS.rst", |
67 | | - "LICENSE.rst", |
68 | | - "NEWS.rst", |
69 | | - # Tests |
70 | | - "tests/", |
71 | | - "noxfile.py", |
| 72 | + "AUTHORS.rst", |
| 73 | + "LICENSE.rst", |
| 74 | + "NEWS.rst", |
| 75 | + # Tests |
| 76 | + "tests/", |
| 77 | + "noxfile.py", |
72 | 78 | ] |
73 | | - |
74 | | -[tool.pyproject-fmt] |
75 | | -max_supported_python = "3.14" |
|
0 commit comments