created a setup.py following distutils instructions from https://docs.python.org...
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Thu, 14 Jan 2016 16:54:07 +0000 (17:54 +0100)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Thu, 14 Jan 2016 16:54:07 +0000 (17:54 +0100)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..1acf1a3
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='pyi2ncommon',
+      version='1.0',
+      description='Intra2net library of common helper utilities',
+      author='Intra2net AG',
+      author_email='info@intra2net.com',
+      url='http://www.intra2net.com',
+      packages=[''],
+      package_dir={'': 'src'},
+      data_files=['check.sh',
+                  'test/disc_filler_test.py', 'test/template.py',
+                  'doc/index.rst', 'doc/modules.rst', 'doc/conf.py',
+                  'doc/about_docu.rst'],
+     )