-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 757 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "markdown_helper"
version = "1.0.2"
authors = [
{ name="Arttu Mahlakaarto", email="arttu.mahlakaarto@gmail.com" },
]
description = "A simple markdown helper"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.packages]
markdown_helper = "src/markdown_helper"
[project.urls]
homepage = "https://github.com/amahlaka/python-markdown-helper"
bug-tracker = "https://github.com/amahlaka/python-markdown-helper/issues"