forked from pseudonym117/Riot-Watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 854 Bytes
/
setup.py
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
from setuptools import setup
import os.path
__version__ = '1.3.2'
descr_file = os.path.join(os.path.dirname(__file__), 'README.rst')
setup(
name='riotwatcher',
version=__version__,
packages=['riotwatcher'],
description='RiotWatcher is a thin wrapper on top of the Riot Games API for League of Legends.',
long_description=open(descr_file).read(),
author='AG Stephan',
url='https://github.com/pseudonym117/Riot-Watcher',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Games/Entertainment :: Role-Playing'
],
license='MIT',
install_requires=[
'requests'
],
)