forked from tinted-theming/tinted-builder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (51 loc) · 1.42 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
[tool.poetry]
name = "base24builder"
version = "2022"
description = "A base 24 builder written in Python"
authors = ["Base24"]
keywords = ["base24"]
classifiers = [
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
homepage = "https://github.com/Base24/base24-builder-python"
repository = "https://github.com/Base24/base24-builder-python"
documentation = "https://github.com/Base24/base24-builder-python/blob/master/README.md"
readme = "README.md"
packages = [{ include = "base24_builder" }, { include = "base24.py" }]
[tool.poetry.scripts]
base24 = 'base24_builder.cli:run'
[tool.poetry.dependencies]
python = "^3.6"
aiofiles = "<2,>=0.8.0"
PyYAML = "<7,>=6.0"
pystache = "<2,>=0.6.0"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
indent = "Tab"
[tool.pydocstyle]
convention = "google"
ignore = "D205,D415"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.basic]
[tool.pylint.format]
indent-string = "\t"
[tool.pylint.master]
ignore-paths = ["tests"]
[tool.pylint.messages_control]
enable = ["F", "E", "W", "R", "C"]
disable = [
"pointless-string-statement",
"superfluous-parens",
"bad-continuation"
]