-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.24 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "suaidoc"
version = "0.2.5"
dependencies = [
"click",
"pdfkit",
"python_frontmatter",
]
description = "CLI for generating reports from Markodwn according to GOST 7.32"
authors = [
{name = "Vlad Vorobew", email = "[email protected]"}
]
maintainers = [
{name = "Vlad Vorobew", email = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Software Development :: Documentation",
]
keywords = ["cli", "university", "gost", "docs", "pdf", "generating" ,"suai"]
[tool.setuptools.packages.find]
include = ["suaidoc*"]
[tool.setuptools.package-data]
"*" = ["*"]
[project.urls]
Homepage = "https://github.com/vladcto/suaidoc"
Repository = "https://github.com/vladcto/suaidoc.git"
Issues = "https://github.com/vladcto/suaidoc/issues"
Changelog = "https://github.com/vladcto/suaidoc/blob/main/CHANGELOG.md"
[project.scripts]
suaidoc = "suaidoc.suaidoc:cli"