-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
57 lines (51 loc) · 1.7 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = 'mkdocs-bootswatch'
dynamic = ['version']
description = "Bootswatch themes for MkDocs"
readme = {file = 'README.md', content-type='text/markdown'}
authors = [
{name = 'Dougal Matthews', email = '[email protected]'}
]
maintainers = [
{name = 'Waylan Limberg', email = '[email protected]'}
]
license = {file = 'LICENSE'}
requires-python = '>=3.5'
dependencies = [
'mkdocs>=1.1'
]
[project.urls]
'Homepage' = 'http://mkdocs.github.io/mkdocs-bootswatch/'
'Repository' = 'https://github.com/mkdocs/mkdocs-bootswatch'
'Issue Tracker' = 'https://github.com/mkdocs/mkdocs-bootswatch/issues'
[project.entry-points.'mkdocs.themes']
cerulean = 'mkdocs_bootswatch.cerulean'
cosmo = 'mkdocs_bootswatch.cosmo'
cyborg = 'mkdocs_bootswatch.cyborg'
darkly = 'mkdocs_bootswatch.darkly'
flatly = 'mkdocs_bootswatch.flatly'
journal = 'mkdocs_bootswatch.journal'
litera = 'mkdocs_bootswatch.litera'
lumen = 'mkdocs_bootswatch.lumen'
lux = 'mkdocs_bootswatch.lux'
materia = 'mkdocs_bootswatch.materia'
minty = 'mkdocs_bootswatch.minty'
pulse = 'mkdocs_bootswatch.pulse'
sandstone = 'mkdocs_bootswatch.sandstone'
simplex = 'mkdocs_bootswatch.simplex'
slate = 'mkdocs_bootswatch.slate'
solar = 'mkdocs_bootswatch.solar'
spacelab = 'mkdocs_bootswatch.spacelab'
superhero = 'mkdocs_bootswatch.superhero'
united = 'mkdocs_bootswatch.united'
yeti = 'mkdocs_bootswatch.yeti'
[tool.setuptools]
license-files = ['LICENSE', 'bootswatch.LICENSE']
[tool.setuptools.package-data]
"*" = ['*.css', '*.yml']
[tool.setuptools.dynamic]
version = {attr = 'mkdocs_bootswatch.__version__'}