-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import importlib.metadata | ||
|
||
__version__ = importlib.metadata.version("assignment-autograder") | ||
__version__ = importlib.metadata.version("autograder") | ||
|
||
__title__ = "assignment-autograder" | ||
__title__ = "autograder" | ||
__description__ = "Automatic assignment grading for instructor use in programming courses" | ||
__author__ = "Stanislav Zmiev" | ||
__author_email__ = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[tool.poetry] | ||
name = "assignment-autograder" | ||
name = "autograder" | ||
version = "3.7.5" | ||
description = "A simple, secure, and versatile way to automatically grade programming assignments" | ||
authors = ["Ovsyanka <[email protected]>"] | ||
license = "GPL-3.0" | ||
readme = "README.md" | ||
documentation = "https://ovsyanka83.github.io/autograder/" | ||
repository = "https://github.com/Ovsyanka83/autograder" | ||
# this might be unnecessary, I don't remember and am too lazy too google | ||
include = ["autograder/**/*"] | ||
packages = [{ include = "autograder" }] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
|