aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 2f2137df5296c84d7d46bf2a81209047f42db57f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup

setup(
    name = "pycrctrl",
    py_modules = ["pycrctrl"],
    version = "0.2",
    description = "Controller for clonk's dedicated server",
    author = "George Tokmaji",
    author_email = "tokmajigeorge@gmail.com",
    url = "https://github.com/Fulgen301/pycrctrl",
    download_url = "https://github.com/Fulgen301/pycrctrl/archive/0.2.tar.gz",
    keywords = ["clonk", "openclonk"],
    license = "ISC",
    requires = ["asyncio-irc"],
    install_requires = ["asyncio-irc"]
    )