-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
"cassiopeia"
]
project_url = "https://github.com/MakersF/LoLScraper"
setup(
name="lol_scraper",
version="0.1.1",
author="Francesco Zoffoli",
author_email="[email protected]",
url=project_url,
description="A python script and library to download and store League of Legends matches with Riot API",
long_description="Head to the github project page ({}) for a formatted description".format(project_url),
keywords=["LoL", "League of Legends", "Riot Games", "API", "REST"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license="MIT",
packages=find_packages(),
zip_safe=True,
install_requires=install_requires
)