mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-31 04:58:12 +00:00
Added setup.py, definitely needs more info
This commit is contained in:
parent
6daff525ec
commit
36829147d3
1 changed files with 27 additions and 0 deletions
27
setup.py
Normal file
27
setup.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
from setuptools import setup
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
requirements = f.read().splitlines()
|
||||
|
||||
version = '0.0.1'
|
||||
|
||||
packages = [
|
||||
'Github',
|
||||
]
|
||||
|
||||
readme = ''
|
||||
with open('README.md') as f:
|
||||
readme = f.read()
|
||||
|
||||
setup(
|
||||
name='GithubAPI',
|
||||
author='VarMonke & sudosnok',
|
||||
url='https://github.com/VarMonke/Github-Api-Wrapper',
|
||||
version=version,
|
||||
packages=packages,
|
||||
license='MIT',
|
||||
description='An asynchronous python wrapper around the GitHub API',
|
||||
long_description=readme,
|
||||
install_requires=requirements,
|
||||
python_requires='>=3.10.2',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue