From 70d0ad532dd7e8bfa3e3583f2b4ea3a98f40af02 Mon Sep 17 00:00:00 2001 From: Jorgen Schaefer Date: Tue, 30 Oct 2012 11:40:57 +0100 Subject: distutils support for pypi. Also add copyright notice. --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..5773188 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +import shutil + +from distutils.core import setup + +shutil.copy("README.md", "README.txt") + +setup(name='gnucashxml', + version='1.0', + description="Parse GNU Cash XML files", + author="Jorgen Schaefer", + author_email="forcer@forcix.cx", + url="https://github.com/jorgenschaefer/gnucashxml", + py_modules=['gnucashxml'] + ) -- cgit v1.2.3