Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[project]
name = "grader"
description = "a Python module and command-line utility to grade applications"
version = "0.1"
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',]

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.scripts]
grader = "grader.grader:main"

[tool.aliases]
test = "pytest"
48 changes: 0 additions & 48 deletions setup.py

This file was deleted.

Loading