-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 957 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lamya"
version = "1.0.6"
authors = [
{ name="Vasil Shotarov", email="vshotarov@gmail.com" },
]
description = "The lamyà package provides both an out of the box markdown static site generator and a framework for building your own custom ones."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[project.urls]
"Homepage" = "https://github.com/vshotarov/lamya"
"Bug Tracker" = "https://github.com/vshotarov/lamya/issues"
"Documentation" = "https://lamya.readthedocs.io/en/latest/index.html"
[project.optional-dependencies]
all = ["Markdown==3.3.3", "Jinja2>=3"]
[tool.setuptools]
packages = ["lamya"]
[tool.setuptools.package-data]
lamya = ["**/*.html","**/*.css","**/*.js","**/*.svg"]