Skip to content

Commit

Permalink
Edit setup.py
Browse files Browse the repository at this point in the history
- setup.py: Update version, email, description
  • Loading branch information
dev-ruby committed Mar 29, 2023
1 parent f816a24 commit cfcde13
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()
with open("README.md", "r") as fs:
long_description = fs.read()

setuptools.setup(
name="TrackerGG",
version="1.0.1",
version="2.0.0",
author="DevRuby",
author_email="devruby7777@gmail.com",
description="Game Stat Library with Tracker API",
author_email="hiveruby@gmail.com",
description="TrackerGG API Wrapper Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dev-ruby/TrackerGG",
Expand All @@ -17,9 +17,6 @@
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"requests",
"aiohttp"
],
install_requires=["requests", "aiohttp"],
python_requires=">=3.3",
)

0 comments on commit cfcde13

Please sign in to comment.