diff --git a/README.rst b/README.rst index ba065be..d389b04 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ -pyed: ed(1) in Python +ed(1) in Python ===================== -.. image:: https://github.com/eumiro/pyed/workflows/CI/badge.svg - :target: https://github.com/eumiro/pyed/actions?query=workflow%3ACI +.. image:: https://github.com/eumiro/ed/workflows/CI/badge.svg + :target: https://github.com/eumiro/ed/actions?query=workflow%3ACI -.. image:: https://img.shields.io/github/license/eumiro/pyed - :target: https://github.com/eumiro/pyed/ +.. image:: https://img.shields.io/github/license/eumiro/ed + :target: https://github.com/eumiro/ed/ diff --git a/setup.py b/setup.py index 4425ffe..c55d999 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,12 @@ """ -pyed setup.py +ed setup.py """ import re from pathlib import Path from setuptools import find_packages, setup -NAME = "pyed" +NAME = "ed" KEYWORDS = [ "ed", "editor", diff --git a/src/pyed/__init__.py b/src/ed/__init__.py similarity index 64% rename from src/pyed/__init__.py rename to src/ed/__init__.py index ed6411b..7d9a34f 100644 --- a/src/pyed/__init__.py +++ b/src/ed/__init__.py @@ -1,8 +1,8 @@ __version__ = "0.1.0" -__title__ = "pyed" +__title__ = "ed" __description__ = "the standard text editor" -__url__ = "https://github.com/eumiro/pyed/" +__url__ = "https://github.com/eumiro/ed/" __uri__ = __url__ __doc__ = __description__ + " <" + __uri__ + ">" @@ -10,4 +10,4 @@ __email__ = "eumiro@gmail.com" __license__ = "MIT" -__copyright__ = "Copyright (c) 2020 Miroslav Šedivý" +__copyright__ = "Copyright (c) 2020–2021 Miroslav Šedivý" diff --git a/src/pyed/buffer.py b/src/ed/buffer.py similarity index 100% rename from src/pyed/buffer.py rename to src/ed/buffer.py diff --git a/tests/test_buffer.py b/tests/test_buffer.py index 8754551..9ad5f1d 100644 --- a/tests/test_buffer.py +++ b/tests/test_buffer.py @@ -1,6 +1,6 @@ import pytest -from pyed.buffer import Buffer +from ed.buffer import Buffer def test_init_invalid():