-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1003 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
31
32
from setuptools import setup, find_packages
from collections import OrderedDict
import os
long_description = """
Read more at the Battlecode website: https://play.battlecode.org.
"""
# set 'SETUPTOOLS_SCM_PRETEND_VERSION=' to manually set the version number when building
setup(name='battlecode25',
description='Battlecode 2025 game engine.',
author='Battlecode',
long_description=long_description,
author_email='[email protected]',
url="https://play.battlecode.org",
license='MIT',
packages=find_packages(),
package_data={
"": ["**/*.map25"]
},
project_urls=OrderedDict((
#('Code', 'https://github.com/battlecode/battlecode25/tree/master/engine'),
#('Documentation', 'https://github.com/battlecode/battlecode25/tree/master/engine')
)),
install_requires=[
'RestrictedPython==7.4',
'flatbuffers==24.3.25'
],
python_requires='>=3.12, <3.13',
zip_safe=False
)