diff options
Diffstat (limited to 'python')
-rwxr-xr-x | python/setup.py | 18 |
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)]) |