From e30765b7b0d45917b773910d221110e959cd29ed Mon Sep 17 00:00:00 2001 From: Tom Wardill Date: Tue, 28 Aug 2012 10:10:56 +0100 Subject: [PATCH] Added bare setup.py --- setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..26709dc --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +try: + from setuptools import setup, find_packages +except ImportError: + from ez_setup import use_setuptools + use_setuptools() + from setuptools import setup, find_packages + +setup( + name='SourceLib', + description='Python implementation of Valve Source Dedicated Server Query/RCON/Log protocols.', + version="0.0.1", + author='', + author_email='', + url='https://github.com/frostschutz/SourceLib', + packages=['SourceLib'], + package_dir = {'SourceLib': '.'} +) \ No newline at end of file