summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-24 12:48:11 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-24 12:48:11 -0400
commit07fcc3a08af552bd40d4bd5103d4668662acdaf4 (patch)
tree60894a826aa068227fa85ba108c7d8a5c46ed3b4 /python
parent68d41d7dc0781fed86d9c53ebe184154ce72664d (diff)
downloadledger-07fcc3a08af552bd40d4bd5103d4668662acdaf4.tar.gz
ledger-07fcc3a08af552bd40d4bd5103d4668662acdaf4.tar.bz2
ledger-07fcc3a08af552bd40d4bd5103d4668662acdaf4.zip
Build Python module using automake, not setup.py
Diffstat (limited to 'python')
-rwxr-xr-xpython/setup.py18
1 files changed, 0 insertions, 18 deletions
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)])