forked from getpelican/pelican
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
86 lines (77 loc) · 2.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "gemican"
version = "5.0.1"
description = "Static gemini capsule generator supporting Markdown and Gemtext"
authors = ["Kevin Houlihan <kevin@crimsoncookie.com>"]
license = "AGPLv3"
readme = "README.md"
keywords = ["static site generator", "static sites", "ssg", "gemini"]
repository = "https://github.com/khoulihan/gemican"
documentation = "https://portal.mozz.us/gemini/gemini.hyperlinkyourheart.com/gemicandocs/"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup",
]
[tool.poetry.urls]
"Tracker" = "https://github.com/khoulihan/gemican/issues"
[tool.poetry.dependencies]
python = "^3.6.7"
blinker = ">=1.4"
docutils = ">=0.16"
feedgenerator = ">=1.9"
jinja2 = ">=2.7"
python-dateutil = ">=2.8"
pytz = ">=2020.1"
rich = ">=10.1"
unidecode = ">=1.1"
Twisted = "^21.7.0"
pyOpenSSL = "^20.0.1"
service-identity = "^21.1.0"
python-magic = "^0.4.24"
md2gemini = {version = "^1.8.1", optional = true}
[tool.poetry.dev-dependencies]
BeautifulSoup4 = "^4.9"
jinja2 = "~2.11"
lxml = "^4.3"
sphinx = "^3.0"
sphinx_rtd_theme = "^0.5"
livereload = "^2.6"
psutil = {version = "^5.7", optional = true}
pytest = "^6.0"
pytest-cov = "^2.8"
pytest-pythonpath = "^0.7.3"
pytest-sugar = "^0.9.4"
pytest-xdist = "^2.0"
tox = {version = "^3.13", optional = true}
flake8 = "^3.8"
flake8-import-order = "^0.18.1"
invoke = "^1.3"
isort = "^5.2"
black = {version = "^19.10b0", allow-prereleases = true}
md2gemini = "^1.8.1"
[tool.poetry.extras]
markdown = ["md2gemini"]
[tool.poetry.scripts]
gemican = "gemican.__main__:main"
gemican-import = "gemican.tools.gemican_import:main"
gemican-plugins = "gemican.plugins._utils:list_plugins"
gemican-quickstart = "gemican.tools.gemican_quickstart:main"
gemican-themes = "gemican.tools.pelican_themes:main"
[tool.autopub]
project-name = "Gemican"
git-username = "botpub"
git-email = "botpub@autopub.rocks"
changelog-file = "docs/content/pages/changelog.md"
changelog-header = "###############"
version-header = "="
version-strings = ["setup.py"]
build-system = "setuptools"
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]