forked from alvinwan/notion2markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 801 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 = "notion2markdown"
version = "0.2.0"
authors = [
{ name="Alvin Wan", email="[email protected]" },
]
description = "Export notion pages to markdown in Python"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"notion-client"
]
[tool.setuptools.packages.find]
include = ["notion2markdown"]
[project.scripts]
notion2markdown = "notion2markdown.cli:main"
n2md = "notion2markdown.cli:main"
[project.urls]
"Homepage" = "https://github.com/alvinwan/notion2markdown"
"Bug Tracker" = "https://github.com/alvinwan/notion2markdown/issues"