From: Christian Herdtweck Date: Thu, 14 Jan 2016 16:54:07 +0000 (+0100) Subject: created a setup.py following distutils instructions from https://docs.python.org... X-Git-Tag: v1.2~52 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=5565687d9e6b4616701b4b79c1a9294672a0f68b;p=pyi2ncommon created a setup.py following distutils instructions from https://docs.python.org/3.3/distutils/index.html --- diff --git a/setup.py b/setup.py new file mode 100644 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'], + )