forked from mirrors/0ad
c49d4eedd0
To improve quality und uniformity of the included Python code this lints and formats the included Python files with ruff.
15 lines
322 B
Python
15 lines
322 B
Python
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,
|
|
)
|