File: setup.py

package info (click to toggle)
0ad 0.28.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 182,352 kB
  • sloc: cpp: 201,989; javascript: 19,730; ansic: 15,057; python: 6,597; sh: 2,046; perl: 1,232; xml: 543; java: 533; makefile: 105
file content (15 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
)