-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 758 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 758 Bytes
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
[project]
name = "mnemo"
version = "1.0"
description = "An elegant Markdown editor with real-time preview and PDF export."
readme = "README.md"
authors = [
{ name = "Thiago", email = "thiago@ufrn.edu.br" }
]
requires-python = ">=3.10"
dependencies = [
"markdown>=3.5",
"pdfkit>=1.0.0",
"pygobject>=3.42.0; sys_platform == 'linux'",
"pymdown-extensions>=10.20.1",
"pywebview>=5.0",
]
[project.scripts]
mnemo = "mnemo.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mnemo"]
[tool.hatch.metadata]
allow-direct-references = true
include = [
"main.py",
"index.html",
"script.js",
"libs/",
"README.md"
]
[tool.uv]
managed = true