1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-15 13:45:00 +00:00

Fix repr and bump version

This commit is contained in:
VarMonke 2022-04-27 15:03:18 +05:30
parent c13448cf7d
commit e34d67b581
4 changed files with 19 additions and 12 deletions

View file

@ -3,10 +3,10 @@ from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = '0.0.1'
version = '1.0.0'
packages = [
'Github',
'github',
]
readme = ''
@ -14,7 +14,7 @@ with open('README.md') as f:
readme = f.read()
setup(
name='GithubAPI',
name='github',
author='VarMonke & sudosnok',
url='https://github.com/VarMonke/Github-Api-Wrapper',
version=version,