forked from joshuaduffy/dota2api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.43 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script"""
from setuptools import setup
import dota2api
setup(
name="dota2api",
version=dota2api.__version__,
author=dota2api.__author__,
author_email="mail@joshuaduffy.org",
url="https://github.com/joshuaduffy/dota2api",
description=dota2api.__doc__,
license=dota2api.__licence__,
keywords="dota2 dota api dota2api parser",
packages=['dota2api', 'dota2api.src', 'dota2api.ref'],
package_data={'dota2api.ref': ['abilities.json',
'heroes.json',
'leaver.json',
'items.json',
'lobbies.json',
'modes.json',
'regions.json']},
install_requires=['requests'],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
)