forked from meraki-analytics/cassiopeia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.46 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
40
41
42
43
44
45
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
install_requires = [
"datapipelines>=1.0.7",
"merakicommons>=1.0.10",
"Pillow",
"arrow<1.0.0",
"requests"
]
# Require python 3.6
if sys.version_info.major != 3 and sys.version_info.minor != 6:
sys.exit("Cassiopeia requires Python 3.6.")
setup(
name="cassiopeia",
version="4.0.18", # Keep the Cass version at parity with the Riot API major version, use the minor version for breaking changes, and the patch version for everything else
author="Jason Maldonis; Rob Rua",
author_email="team@merakianalytics.com",
url="https://github.com/meraki-analytics/cassiopeia",
description="Riot Games Developer API Wrapper (3rd Party)",
keywords=["LoL", "League of Legends", "Riot Games", "API", "REST"],
classifiers=[
"Development Status :: 4 - Beta",
"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,
include_package_data=True
)