Skip to content

Commit

Permalink
Rename to ed
Browse files Browse the repository at this point in the history
  • Loading branch information
eumiro committed May 22, 2021
1 parent 0c239f7 commit c2913ef
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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/
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/pyed/__init__.py → src/ed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
__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__ + ">"

__author__ = "Miroslav Šedivý"
__email__ = "[email protected]"

__license__ = "MIT"
__copyright__ = "Copyright (c) 2020 Miroslav Šedivý"
__copyright__ = "Copyright (c) 2020–2021 Miroslav Šedivý"
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_buffer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from pyed.buffer import Buffer
from ed.buffer import Buffer


def test_init_invalid():
Expand Down

0 comments on commit c2913ef

Please sign in to comment.