-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (38 loc) · 1.23 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
[tool.poetry]
name = "mkdocs-extra-sass-plugin"
description = "Adds stylesheets to your mkdocs site from Sass/SCSS."
version = "0.1.0"
authors = ["orzih <orzih@mail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/orzih/mkdocs-extra-sass-plugin"
keywords = ["mkdocs", "css", "sass", "scss"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.plugins."mkdocs.plugins"]
extra-sass = 'mkdocs_extra_sass_plugin.plugin:ExtraSassPlugin'
[tool.poetry.dependencies]
python = ">=3.6"
mkdocs = ">=1.1"
beautifulsoup4 = ">=4.6.3"
libsass = ">=0.15"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.4"
flake8-bugbear = "^20.11.1"
flake8-isort = "^4.0.0"
flake8-print = "^4.0.0"
autopep8 = "^1.5.4"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"