forked from skadistats/skadi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 910 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='skadi',
version='0.1',
description='A Dota 2 replay parser.',
long_description=open('README.md').read(),
author='Joshua Morris',
author_email='[email protected]',
zip_safe=True,
url='https://github.com/onethirtyfive/skadi',
license='MIT',
packages=find_packages(),
keywords='dota replay',
install_requires=[
'protobuf==2.5',
'python-snappy==0.5',
'bitstring==3.1.2'
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Database",
])