1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-30 20:48:12 +00:00
GitHubWrapper/setup.py
2022-06-21 18:54:22 +03:00

31 lines
797 B
Python

import re
from pathlib import Path
from setuptools import setup
ROOT_DIR = Path(__file__).parent
packages = [
'github',
]
extras_require = {
'docs': [
'sphinx==4.4.0',
'sphinxcontrib_trio==1.1.2',
'sphinxcontrib-websupport',
'typing-extensions',
],
}
setup(
name='github',
author='VarMonke & sudosnok',
url='https://github.com/VarMonke/Github-Api-Wrapper',
version=re.search(r'\d[.]\d[.]\d', (ROOT_DIR / "github" / "__init__.py").read_text())[0],
packages=packages,
license='MIT',
description='An asynchronous python wrapper around the GitHub API',
long_description=(ROOT_DIR / "README.rst").read_text(),
install_requires=(ROOT_DIR / "requirements.txt").read_text().splitlines(),
python_requires='>=3.8.0',
)