-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 885 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "grader/__init__.py"
[project]
name = "grader"
description = "a Python module and command-line utility to grade applications"
authors = [{name = "Grader contributors"}]
keywords = ["grading applications"]
license = "GPL-3.0-or-later"
classifiers = [ 'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
]
urls = {Homepage = "https://github.com/ASPP/grader"}
requires-python = ">= 3.10"
dependencies = ['numpy',]
dynamic = ["version",]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
grader = "grader.grader:main"
[tool.aliases]
test = "pytest"
[dependency-groups]
dev = [
"pytest",
]