-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools>61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "naucse"
version = "0.5.3"
description = "Website for course materials"
readme = "README.md"
license = {file = "LICENSE.MIT"}
dependencies = [
"elsa",
"ics",
"cssutils",
"PyYAML",
"Flask",
"Jinja2",
"Werkzeug >= 2.2.0",
"jsonschema",
"lxml",
"naucse-render >= 1.7",
'backports.zoneinfo; python_version<"3.9"',
'tzdata; sys_platform=="win32"',
"markupsafe",
"gitpathlib",
]
[project.urls]
home = "https://github.com/pyvec/naucse"
changelog = "https://github.com/pyvec/naucse/blob/master/CHANGELOG.md"
source = "https://github.com/pyvec/naucse"
issues = "https://github.com/pyvec/naucse/issues"
[[project.authors]]
name = "Petr Viktorin"
email = "encukou@gmail.com"
[[project.authors]]
name = "naucse.python.cz contributors"
[project.optional-dependencies]
dev = ["tox", "pytest", "hypothesis"]
test = ["pytest", "hypothesis"]
[tool.setuptools]
zip-safe = false
packages = ["naucse"]