0ad/source/tools/rlclient/python/setup.py

16 lines
323 B
Python
Raw Permalink Normal View History

from setuptools import setup
setup(
name="zero_ad",
version="0.0.1",
description="Python client for 0 AD",
url="https://code.wildfiregames.com",
author="Brian Broll",
author_email="brian.broll@gmail.com",
install_requires=[],
license="MIT",
packages=["zero_ad"],
zip_safe=False,
)