-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (46 loc) · 936 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = [
"hatchling>=1.8.0",
]
build-backend = "hatchling.build"
[project]
name = "notion-exporter"
dynamic = [
"version",
]
description = "Tool that allows you to export your Notion pages to markdown files."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "Bogdan Kostić", email = "[email protected]" },
]
keywords = [
"Notion",
"Notion-API",
"Notion-Export",
"Notion-Extraction"
]
dependencies = [
"notion-client",
"tenacity",
"notion2md",
]
[project.urls]
"GitHub" = "https://github.com/bogdankostic/notion-exporter"
[tool.hatch.version]
path = "VERSION.txt"
pattern = "(?P<version>.+)"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = [
"/notion_exporter",
"/VERSION.txt",
]
[tool.hatch.build.targets.wheel]
packages = [
"notion_exporter",
]
[tool.black]
line-length = 120