-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdf_feedback_exporter"
description = "An exporter to turn nbgrader html feedback into PDF feedback files"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{ name = "Tim Metzler", email = "[email protected]" },
]
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"beautifulsoup4",
"traitlets",
"e2xcore",
"pdfkit",
"PyPDF2",
"matplotlib",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/Digiklausur/pdf_feedback_exporter"
Issues = "https://github.com/Digiklausur/pdf_feedback_exporter/issues"
Source = "https://github.com/Digiklausur/pdf_feedback_exporter"
[project.optional-dependencies]
dev = [
"pre-commit",
"hatchling"
]
[tool.hatch.version]
path = "pdf_feedback_exporter/__version__.py"