forked from pseudonym117/Riot-Watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 1.01 KB
/
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
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
import os.path
import sys
__version__ = '2.3.0'
descr_file = os.path.join(os.path.dirname(__file__), 'README.rst')
if sys.version_info > (3, 0):
requirements = [
'requests'
]
else:
requirements = [
'requests',
'mock'
]
setup(
name='riotwatcher',
version=__version__,
packages=find_packages(exclude=['test']),
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=requirements,
)