-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 745 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import re
from pathlib import Path
from setuptools import setup
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', (Path('github') / '__init__.py').read_text())[0],
packages=packages,
license='MIT',
description='An asynchronous python wrapper around the GitHub API',
long_description=Path('README.rst').read_text(),
install_requires=Path('requirements.txt').read_text().splitlines(),
python_requires='>=3.8.0',
)