-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.15 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mmap-tools"
version = "0.1.0"
description = "Read, write, and convert MindJet MindManager .mmap files. Pure Python, no dependencies."
readme = "README.md"
license = {text = "AGPL-3.0"}
requires-python = ">=3.10"
authors = [{name = "lifehackjohn"}]
keywords = ["mindmanager", "mindjet", "mmap", "mind-map", "productivity", "obsidian"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
"Topic :: Text Processing :: Markup",
]
[project.scripts]
mmap-tools = "mmap_tools.cli:main"
[tool.setuptools.package-data]
mmap_tools = ["py.typed"]
[project.urls]
Homepage = "https://github.com/lifehackjohn/mmap-tools"
Repository = "https://github.com/lifehackjohn/mmap-tools"
Issues = "https://github.com/lifehackjohn/mmap-tools/issues"