From f5993250dabce3788edc7293b3ebf585d144d923 Mon Sep 17 00:00:00 2001 From: Stanislav Zmiev Date: Sun, 13 Nov 2022 00:11:47 +0300 Subject: [PATCH] Change pypi project name (#90) --- README.md | 12 ++++++------ autograder/__init__.py | 4 ++-- docs/README.md | 12 ++++++------ pyproject.toml | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 090c22e..6b77eaa 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ Coverage - - PyPI + + PyPI - - Supported Python versions + + Supported Python versions

@@ -40,7 +40,7 @@ ## Installation -* Run `pip install assignment-autograder` +* Run `pip install autograder` * To grade various programming languages, you'd need to install: * `gcc`/`clang` for C/C++ support * `Java JDK` for java support @@ -49,7 +49,7 @@ ### Updates -`pip install -U --no-cache-dir assignment-autograder` +`pip install -U --no-cache-dir autograder` ## Quickstart diff --git a/autograder/__init__.py b/autograder/__init__.py index 9ead32e..55d92d5 100644 --- a/autograder/__init__.py +++ b/autograder/__init__.py @@ -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__ = "szmiev2000@gmail.com" diff --git a/docs/README.md b/docs/README.md index 4817ed2..152c64e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -4,11 +4,11 @@ Coverage - - PyPI + + PyPI - - Supported Python versions + + Supported Python versions --- @@ -53,8 +53,8 @@ ## Installation * Currently Python >= 3.7 is necessary. -* Run `pip install assignment-autograder` -* If you want to update to a newer version, run `pip install -U --no-cache-dir assignment-autograder` +* Run `pip install autograder` +* If you want to update to a newer version, run `pip install -U --no-cache-dir autograder` * To grade various programming languages, you'd need to install: * `gcc`/`clang` for C/C++ support * `Java JDK` for java support diff --git a/pyproject.toml b/pyproject.toml index 3a5ed97..89bb376 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [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 "] @@ -7,8 +7,8 @@ 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",