Add setup.py file.
authorSimon Cross <hodgestar@gmail.com>
Sun, 4 Sep 2016 16:28:53 +0000 (18:28 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sun, 4 Sep 2016 16:28:53 +0000 (18:28 +0200)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..009c344
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="tabakrolletjie",
+    version="0.0.1",
+    url='http://ctpug.org.za/gitweb/tabakrolletjie',
+    license='BSD',
+    description="An entry for Pyweek 22.",
+    long_description=open('README.txt', 'r').read(),
+    author='CTPUG',
+    author_email='ctpug@googlegroups.com',
+    packages=find_packages(),
+    include_package_data=True,
+    install_requires=[
+        'pygame',
+        'pymunk',
+    ],
+    classifiers=[
+        'Development Status :: 4 - Beta',
+        'Intended Audience :: End Users/Desktop',
+        'License :: OSI Approved :: ISC License (ISCL)',
+        'Operating System :: POSIX',
+        'Operating System :: Microsoft :: Windows',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2.7',
+        'Topic :: Games/Entertainment',
+    ],
+)