-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.53 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
[tool.black]
skip-string-normalization = true
[tool.poetry]
name = "alagitpull"
version = "0.1.0"
description = "Cleverly-named alabaster sub-theme for git-pull projects"
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/git-pull/alagitpull"
keywords = ["sphinx", "theme", "sphinx-theme", "alabaster"]
authors = ["Tony Narlock <[email protected]>"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/git-pull/alagitpull/issues"
"Repository" = "https://github.com/git-pull/alagitpull"
"Documentation" = "https://github.com/git-pull/alagitpull"
[tool.poetry.scripts]
sphinx_themes = "alagitpull:get_path"
[tool.poetry.plugins."sphinx_themes"]
"alagitpull" = "alagitpull:get_path"
# entry_points={
# 'sphinx_themes': [
# 'alagitpull = alagitpull:get_path',
# ]
# }
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
alabaster = "<0.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"