mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
To improve quality und uniformity of the included Python code this lints and formats the included Python files with ruff.
14 lines
322 B
Python
14 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,
|
|
)
|