mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-07-04 13:37:34 +00:00
fix init and setup
This commit is contained in:
parent
babfb7bdcd
commit
636aa7f53b
2 changed files with 12 additions and 8 deletions
8
setup.py
8
setup.py
|
@ -1,12 +1,14 @@
|
|||
import re
|
||||
from setuptools import setup
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
requirements = f.read().splitlines()
|
||||
|
||||
version = '1.0.0'
|
||||
with open('github/__init__.py') as f:
|
||||
version = re.search(r'\d[.]\d[.]\d', f.read()).group(1)
|
||||
|
||||
packages = [
|
||||
'Github',
|
||||
'github',
|
||||
]
|
||||
|
||||
readme = ''
|
||||
|
@ -14,7 +16,7 @@ with open('README.md') as f:
|
|||
readme = f.read()
|
||||
|
||||
setup(
|
||||
name='Github',
|
||||
name='github',
|
||||
author='VarMonke & sudosnok',
|
||||
url='https://github.com/VarMonke/Github-Api-Wrapper',
|
||||
version=version,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue