-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (44 loc) · 1008 Bytes
/
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
[tool.poetry]
name = "oneliner"
version = "0.3.0"
description = "A static site generator"
authors = ["Marcus Kazmierczak <[email protected]>"]
license = "MIT"
readme = "readme.md"
keywords = ["text list"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.10"
appdirs = ">=1.4"
pre-commit = "^3.1.1"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^6.0.0"
pytest = "^7.2.1"
mypy = "^1.0.1"
[tool.poetry.scripts]
oneliner = 'oneliner.oneliner:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
pythonpath = "oneliner"
testpaths = [
"tests",
]
[tool.ruff]
target-version = "py310"
[tool.mypy]
[[tool.mypy.overrides]]
module = [
"toml",
]
ignore_missing_imports = true