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"] )