-
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) · 721 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 721 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="pyvainglory",
packages=['pyvainglory'],
version="0.0.2",
description="A wrapper for the madglory Vainglory API, complete with synchronous and asynchronous client implementations.",
author="xKynn",
author_email="xkynn@github.com",
url="https://github.com/xKynn/PyVainglory",
download_url="https://github.com/xKynn/PyVainglory/archive/0.0.2.tar.gz",
keywords=['vainglory', 'asyncvainglory', 'async-vainglory', 'async_vainglory', 'pyvainglory'],
classifiers=[],
install_requires=[
"aiohttp",
"requests"
],
python_requires='>=3.5',
package_data={
'': ['data/*.json', 'data/localization/*.ini']
}
)