1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-15 13:45:00 +00:00
GitHubWrapper/setup.py
2022-04-27 15:03:18 +05:30

27 lines
No EOL
570 B
Python

from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = '1.0.0'
packages = [
'github',
]
readme = ''
with open('README.md') as f:
readme = f.read()
setup(
name='github',
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.8.0',
)