-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·23 lines (21 loc) · 935 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
from distutils.core import setup
long_description = open('README.md').read()
setup(name="leagueoflegends",
version="1.4b",
py_modules=["leagueoflegends.leagueoflegends"],
description="Unofficial libraries for interacting with the official League of Legends API",
author="Jennie Lees <[email protected]>",
author_email="[email protected]",
license="WTFPL",
url="http://github.com/jennielees/leagueoflegends-python",
long_description=long_description,
platforms=["any"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development" +
" :: Libraries :: Python Modules",
]
)