-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
33 lines (29 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = []
setup(
name="role-identification",
version="0.2.0",
author="Jason Maldonis",
author_email="[email protected]",
url="https://github.com/meraki-analytics/role-identification",
description="Identifies roles for teams in League of Legends",
keywords=["LoL", "League of Legends", "Role Identification", "Role ID", "RoleID"],
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,
include_package_data=True
)