forked from DeutscheGabanna/Obsidian-Daylio-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (28 loc) · 1.06 KB
/
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
# TODO: make dynamic: version, description, readme, licence
[project]
name = "daylio-obsidian-parser"
version = "0.2"
requires-python = ">= 3.8"
authors = [
{name = "Paweł Ilnicki", email = "[email protected]"}
]
description = "Converts Daylio app .csv file into markdown files for use in Obsidian."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE", content-type = "text/markdown"}
classifiers = [
"Topic :: Text Processing :: Markup :: Markdown",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
keywords = [ "csv", "markdown", ".md", ".csv", "daylio", "obsidian", "file converter" ]
[project.scripts]
# Make daylio_to_md command be recognised by shell as a program
# No need to type: python -m <package> anymore
daylio_to_md = "daylio_to_md.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"