aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c4ca11061dce6242457c8eb3cf8cf3717bb46bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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",
    install_requires = ["asyncio-irc"]
    )