-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.9 KB
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "marmite"
authors = [
{name = "Bruno Rocha", email = "rochacbruno@gmail.com"},
]
description = "Marmite is the easiest static site generator."
readme = "README.md"
license = {text = "AGPL-3.0-or-later"}
keywords = ["web", "blog", "static", "site", "html", "generator", "markdown"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Build Tools",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown",
]
requires-python = ">=3.8"
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://marmite.blog"
Documentation = "https://marmite.blog"
Repository = "https://github.com/rochacbruno/marmite"
"Bug Tracker" = "https://github.com/rochacbruno/marmite/issues"
# [tool.maturin]
# python-source = "python"
# module-name = "marmite._marmite"
# bindings = "bin"
[tool.maturin]
bindings = "bin"
manifest-path = "Cargo.toml"
python-packages = ["python/marmite"]
strip = true
# [tool.maturin.target.x86_64-unknown-linux-gnu]
# features = ["pyo3/extension-module"]
# [tool.maturin.target.x86_64-apple-darwin]
# features = ["pyo3/extension-module"]
# [tool.maturin.target.x86_64-pc-windows-msvc]
# features = ["pyo3/extension-module"]