1
Fork 0
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:
sudosnok 2022-03-27 14:43:14 +01:00
parent 6daff525ec
commit 36829147d3

27
setup.py Normal file
View 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',
)