changeset 0:b53ce9bde2c8

stubbing
author Jeff Hammel <k0scist@gmail.com>
date Tue, 30 Jun 2015 15:37:05 -0700
parents
children 4ab07b01ee63
files requestdumpster/__init__.py setup.py
diffstat 1 files changed, 43 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Tue Jun 30 15:37:05 2015 -0700
@@ -0,0 +1,43 @@
+"""
+setup packaging script for requestdumpster
+"""
+
+import os
+
+version = "0.0"
+dependencies = []
+
+# allow use of setuptools/distribute or distutils
+kw = {}
+try:
+    from setuptools import setup
+    kw['entry_points'] = """
+
+"""
+    kw['install_requires'] = dependencies
+except ImportError:
+    from distutils.core import setup
+    kw['requires'] = dependencies
+
+try:
+    here = os.path.dirname(os.path.abspath(__file__))
+    description = file(os.path.join(here, 'README.txt')).read()
+except IOError:
+    description = ''
+
+
+setup(name='RequestDumpster',
+      version=version,
+      description="dump requests",
+      long_description=description,
+      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      author='Jeff Hammel',
+      author_email='k0scist@gmail.com',
+      url='http://k0s.org/hg/RequestDumpster',
+      license='',
+      packages=['requestdumpster'],
+      include_package_data=True,
+      zip_safe=False,
+      **kw
+      )
+