-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 963 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zeekofile"
dynamic = ["version"]
description = "A static website compiler"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Ryan McGuire and Mike Bayer" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"docutils",
"Mako",
"Markdown",
"MarkupSafe",
"Pygments",
"pytz",
"PyYAML",
]
[project.scripts]
zeekofile = "zeekofile.main:main"
[project.urls]
Homepage = "http://github.com/sqlalchemyorg/zeekofile"
[tool.hatch.version]
path = "zeekofile/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/zeekofile",
]
[tool.black]
line-length = 79
target-version = ['py39']
[tool.zimports]
black-line-length = 79