-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
90 lines (80 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "markata-slides"
dynamic = ["version"]
description = "None"
readme = "README.md"
authors = [
{ name = "Waylon Walker" },
]
keywords = [
"None",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
]
dependencies = [
"markata",
"markdown-it-py[plugins]",
"mdit-py-plugins",
]
[project.license]
file = "LICENSE"
[tool.hatch.envs.default]
dependencies = [
"black",
"bump2version",
"flake8",
"interrogate",
"mypy",
"isort",
"seed-isort-config",
]
[project.optional-dependencies]
dev = [
"black",
"bump2version",
"flake8",
"interrogate",
"mypy",
"isort",
"seed-isort-config",
]
[project.scripts]
markata-slides = "markata_slides.cli:run"
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=markata --cov=tests"
no-cov = "cov --no-cov"
lint = "flake8 markata_slides"
format = "black --check markata_slides"
sort-imports = "isort markata_slides"
build-docs = "markata build"
lint-test = [
"lint",
"format",
"seed-isort-config",
"sort-imports",
"cov",
]
test-lint = "lint-test"
[project.urls]
Homepage = "https://github.com/waylonwalker/Markata Slides"
[tool.hatch.version]
path = "markata_slides/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/markata_slides",
]