-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 801 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="githubapi-async",
version="0.0.1",
description="An (unofficial) asynchronous API Wrapper for interactions with the GitHub API v3",
url="https://github.com/YuvrajGeek/githubapi-async",
author="Yuvraj M.",
author_email="yuvrajmotiramani5115@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
],
install_requires=["aiohttp"],
python_requires='>=3.5',
)