-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 905 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kilvin"
version = "0.4"
authors = [
{ name="Pratham Singh", email="[email protected]" },
]
description = "A minimal static site generator."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
keywords = ["static site generator", "markdow"]
dependencies = [
"markdown",
"Jinja2",
"tomli",
"python-frontmatter",
"click",
]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
"Homepage" = "https://github.com/shanukun/kilvin"
"Bug Tracker" = "https://github.com/shanukun/kilvin/issues"
[project.scripts]
kilvin = "kilvin.__main__:main"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100