From c8899addfd2deed3d84be2de234681db64987722 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 30 Apr 2007 06:26:38 +0000 Subject: Rearranged the sources a bit. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 47d47827..fd42d62d 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,6 @@ from distutils.core import setup, Extension import os -import string defines = [('PYTHON_MODULE', 1)] libs = os.environ["PYLIBS"].split() @@ -15,5 +14,6 @@ setup(name = "Ledger", author_email = "johnw@newartisans.com", url = "http://johnwiegley.com/", ext_modules = [ - Extension("ledger", [os.path.join(os.environ['SRCDIR'], "pyledger.cc")], + Extension("ledger", + [os.path.join(os.environ['SRCDIR'], "src", "pyledger.cc")], define_macros = defines, libraries = libs)]) -- cgit v1.2.3