-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 986 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
from setuptools import setup, find_packages
from collections import OrderedDict
long_description="""
This is a minimal engine for the Battlehack20 game.
It lacks the secure of the original engine, but makes up for it
by running 30 times faster.
Read more at the Battlehack website: https://bh2020.battlecode.org.
"""
setup(name='battlehack20-minimal',
version="1.0.6",
description='Battlehack 2020 fancy viewer.',
author='cooljoseph',
long_description=long_description,
author_email='[email protected]',
url="https://bh2020.battlecode.org",
license='GNU General Public License v3.0',
packages=find_packages(),
project_urls=OrderedDict((
('Code', 'https://github.com/cooljoseph1/battlehack20-minimal'),
('Documentation', 'https://github.com/cooljoseph1/battlehack20-minimal')
)),
install_requires=[],
python_requires='>=3, <3.8',
zip_safe=False,
include_package_data=True
)