From 07fcc3a08af552bd40d4bd5103d4668662acdaf4 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 24 Feb 2009 12:48:11 -0400 Subject: Build Python module using automake, not setup.py --- python/setup.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 python/setup.py (limited to 'python/setup.py') diff --git a/python/setup.py b/python/setup.py deleted file mode 100755 index 1e67fb00..00000000 --- a/python/setup.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python - -from distutils.core import setup, Extension - -import os - -defines = [('PYTHON_MODULE', 1)] -libs = os.environ["PYLIBS"].split() - -setup(name = "Ledger", - version = os.environ["VERSION"], - description = "Ledger Accounting Library", - author = "John Wiegley", - author_email = "johnw@newartisans.com", - url = "http://www.newartisans.com/software/ledger.html", - ext_modules = [ - Extension("ledger", [os.environ["SRCDIR"] + '/python/pyledger.cc'], - define_macros = defines, libraries = libs)]) -- cgit v1.2.3