From 5565687d9e6b4616701b4b79c1a9294672a0f68b Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Thu, 14 Jan 2016 17:54:07 +0100 Subject: [PATCH] created a setup.py following distutils instructions from https://docs.python.org/3.3/distutils/index.html --- setup.py | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 setup.py 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'], + ) -- 1.7.1