forked from happyleavesaoc/aoc-mgz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 823 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
30
"""Setup."""
from setuptools import setup, find_packages
setup(
name='mgz',
version='1.5.0',
description='Parse Age of Empires 2 recorded games.',
url='https://github.com/happyleavesaoc/aoc-mgz/',
license='MIT',
author='happyleaves',
author_email='happyleaves.tfr@gmail.com',
packages=find_packages(),
install_requires=[
'aiohttp>=3.6.2',
'aocref>=1.0.2',
'construct==2.8.16',
'dataclasses==0.8; python_version < "3.7"',
'flatbuffers>=1.10',
'tabulate>=0.8.2',
'tqdm>=4.28.1',
],
entry_points = {
'console_scripts': ['mgz=mgz.cli:main'],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
)