-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 942 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 942 Bytes
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
import os.path
from setuptools import setup
__version__ = '0.0.1'
_description = os.path.join(os.path.dirname(__file__), 'README.md')
setup(
name='RGApi',
version=__version__,
packages=['rgapi'],
description='Full-featured Riot Game API python client.',
long_description=open(_description).read(),
author='Alex Pyasetskiy',
url='TBD',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Text Processing',
'Topic :: Games/Entertainment :: Role-Playing',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP'
],
license='MIT',
install_requires=[
'requests==2.8.1',
'enum==0.4.6',
'pytz'
],
)