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