summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 461b6203651f0509e9f446589631f61da2359716 (plain)
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "ssg"
authors = [
    {name = "Tomasz Kramkowski", email = "tomasz@kramkow.ski"},
]
classifiers = [
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
    "Jinja2 >=3,<4",
]
dynamic = ["description", "version"]
requires-python = "~=3.6"

[project.urls]
Source = "https://the-tk.com/cgit/ssg/"

[tool.flit.sdist]
exclude = ["**/.gitignore"]

[tool.isort]
profile = "black"