forked from kdeldycke/plumage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.88 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
[tool.poetry]
# Docs: https://python-poetry.org/docs/pyproject/
name = "plumage"
version = "2.5.0"
description = """Clean and tidy theme for Pelican."""
license = 'GPL-2.0-or-later'
authors = ["Kevin Deldycke <[email protected]>"]
readme = "readme.md"
homepage = 'https://github.com/kdeldycke/plumage'
repository = 'https://github.com/kdeldycke/plumage'
documentation = 'https://github.com/kdeldycke/plumage#settings'
keywords = [
'pelican', 'pelican-theme', 'tipue-search', 'masonry', 'theme',
'bootstrap', 'jquery', 'font-awesome']
classifiers = [
# See: https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Pelican :: Themes',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Other',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing :: Markup :: HTML']
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/kdeldycke"
[tool.poetry.dependencies]
closure = "^20191111"
cssmin = "^0.2.0"
libsass = ">=0.20.1,<0.22.0"
Markdown = "^3.3.3"
pelican = "^4.2.0"
pelican-webassets = "^2.0.0"
pygments = "^2.7.0"
pymdown-extensions = ">=8.0.1,<10.0.0"
pynpm = "^0.1.2"
pyquery = "^1.4.3"
# List of python versions and their support status:
# https://en.wikipedia.org/wiki/History_of_Python#Support
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
check-wheel-contents = "^0.3.3"
twine = "^3.7"
yamllint = "^1.26.3"
[tool.black]
# TODO: add py39 on next black release.
# See: https://github.com/psf/black/commit/6dddbd72414061cde9dd8ee72eac373b7fcf8b54
target-version = ['py36', 'py37', 'py38']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"