Skip to content

Commit 8b43a29

Browse files
authored
Change Project Name
1 parent 9941f14 commit 8b43a29

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ blank_issues_enabled: false
22
contact_links:
33
- name: Ask a Question
44
about: Ask questions and have discussions with other users.
5-
url: https://github.com/Infiniticity/oeis.wrap/discussions
5+
url: https://github.com/Infiniticity/python-oeis/discussions

README.rst

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
oeis.wrap
1+
python-oeis
22
===========
33

4-
.. image:: https://img.shields.io/github/license/Infiniticity/oeis.wrap
5-
:target: https://github.com/Infiniticity/oeis.wrap/blob/main/LICENSE.md
4+
.. image:: https://img.shields.io/github/license/Infiniticity/python-oeis
5+
:target: https://github.com/Infiniticity/python-oeis/blob/main/LICENSE.md
66
:alt: license
7-
.. image:: https://img.shields.io/tokei/lines/github/Infiniticity/oeis.wrap
8-
:target: https://github.com/Infiniticity/oeis.wrap/graphs/contributors
7+
.. image:: https://img.shields.io/tokei/lines/github/Infiniticity/python-oeis
8+
:target: https://github.com/Infiniticity/python-oeis/graphs/contributors
99
:alt: lines of code
10-
.. image:: https://img.shields.io/pypi/v/oeis.wrap
11-
:target: https://pypi.python.org/pypi/oeis.wrap
10+
.. image:: https://img.shields.io/pypi/v/python-oeis
11+
:target: https://pypi.python.org/pypi/python-oeis
1212
:alt: PyPI version info
13-
.. image:: https://img.shields.io/pypi/pyversions/oeis.wrap
13+
.. image:: https://img.shields.io/pypi/pyversions/python-oeis
1414
:alt: Python version info
1515

1616

@@ -32,21 +32,21 @@ To install the stable version, do the following:
3232
.. code-block:: sh
3333
3434
# Unix / macOS
35-
python3 -m pip install "oeis.wrap"
35+
python3 -m pip install "python-oeis"
3636
3737
# Windows
38-
py -m pip install "oeis.wrap"
38+
py -m pip install "python-oeis"
3939
4040
4141
To install the development version, do the following:
4242

4343
.. code-block:: sh
4444
45-
$ git clone https://github.com/Infiniticity/oeis.wrap
45+
$ git clone https://github.com/Infiniticity/python-oeis
4646
4747
4848
Links
4949
-----
5050

51-
- `oeis <https://oeis.org/>`_
51+
- `OEIS <https://oeis.org/>`_
5252
- `Documentation <https://oeis.readthedocs.io/>`_

oeis/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = "Omkaar"
1414
__license__ = "MIT"
1515
__copyright__ = "Copyright 2022 Omkaar"
16-
__version__ = "1.0.2"
16+
__version__ = "1.0.0"
1717

1818

1919
from .sequence import *

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
2-
name = "oeis.wrap"
3-
version = "1.0.2"
2+
name = "python-oeis"
3+
version = "1.0.0"
44
description = "A basic API wrapper for OEIS."
55
authors = ["Infiniticity <omkaar.nerurkar@gmail.com>"]
66
license = "MIT"
77
readme = "README.rst"
8-
repository = "https://github.com/Infiniticity/oeis.wrap/"
8+
repository = "https://github.com/Infiniticity/python-oeis/"
99
documentation = "https://oeis.readthedocs.io/"
1010
keywords = ["python", "oeis"]
1111
classifiers = [
@@ -19,4 +19,4 @@ packages = ["oeis"]
1919
requests = "2.27.*"
2020

2121
[tool.poetry.urls]
22-
"Bug Tracker" = "https://github.com/Infiniticity/oeis.wrap/issues"
22+
"Bug Tracker" = "https://github.com/Infiniticity/python-oeis/issues"

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
README = (HERE / "README.rst").read_text()
77

88
setup(
9-
name = "oeis.wrap",
10-
version = "1.0.2",
9+
name = "python-oeis",
10+
version = "1.0.0",
1111
description = "A basic API wrapper for OEIS.",
1212
long_description = README,
1313
long_description_content_type = "text/x-rst",
14-
url = "https://github.com/Infiniticity/oeis.wrap",
14+
url = "https://github.com/Infiniticity/python-oeis",
1515
author = "Omkaar",
1616
author_email = "omkaar.nerurkar@gmail.com",
1717
license = "MIT",

0 commit comments

Comments
 (0)