Skip to content
This repository was archived by the owner on Jul 2, 2021. It is now read-only.

Commit 77eb996

Browse files
committed
🚚 Rename proyect
Is alredy used on pypa
1 parent 4539301 commit 77eb996

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

githubapi/__main__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

githubapi2/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from githubapi2.githubuser import run
2+
run()

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
from setuptools import setup
22
from distutils.core import setup
3-
from githubapi.version import __version__
3+
from githubapi2.version import __version__
44

55
setup(
6-
name="githubapi",
6+
name="githubapi2",
77
version=__version__,
88
python_requires=">=3.6",
99
description="A wrapper for the GitHub Api.",
1010
long_description=open("README.md").read(),
1111
long_description_content_type="text/markdown",
1212
author="UltiRequiem",
1313
author_email="eliaz.bobadilladev@gmail.com",
14-
url="https://github.com/UltiRequiem/githubapi",
14+
url="https://github.com/UltiRequiem/githubapi2",
1515
license="MIT",
16-
packages=["githubapi"],
16+
packages=["githubapi2"],
1717
install_requires=["requests==2.25.1"],
18-
entry_points={"console_scripts": ["githubapi = githubapi.githubapi:main"]},
18+
entry_points={"console_scripts": ["githubapi = githubapi2.githubapi2:main"]},
1919
classifiers=[
2020
"Programming Language :: Python",
2121
],

0 commit comments

Comments
 (0)