forked from Blizzard/heroprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.47 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
#!/usr/bin/env python
#
# Copyright 2015-2020 Blizzard Entertainment. Subject to the MIT license.
# See the included LICENSE file for more information.
#
import sys
import setuptools
import heroprotocol.build
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='heroprotocol',
version=heroprotocol.build.game_version(),
author='Blizzard Entertainment',
author_email='[email protected]',
url='https://github.com/Blizzard/heroprotocol',
description='Python library to decode Heroes of the Storm replays',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['heroprotocol', 'heroprotocol.versions',],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Archiving',
'Topic :: Utilities',
],
install_requires=['mpyq >= 0.2.5', 'six >= 1.14.0'],
entry_points={
'console_scripts': ['heroprotocol = heroprotocol.heroprotocol:main',]
},
python_requires='>=2.7',
)