forked from meraki-analytics/cassiopeia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (37 loc) · 1.18 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
install_requires = [
"sqlalchemy"
]
# Install python 2.7 dependencies
if sys.version_info.major == 2:
install_requires += [
"future==0.15.2",
"enum34==1.1.1",
]
setup(
name="cassiopeia",
version="0.1.1",
author="Rob Rua",
author_email="[email protected]",
url="https://github.com/robrua/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
)