mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
14 lines
343 B
Python
14 lines
343 B
Python
|
|
import os
|
||
|
|
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)
|