From 455b2a7a86054d038459191a84aabdfafad5d59b Mon Sep 17 00:00:00 2001 From: einarr Date: Tue, 11 Dec 2007 19:49:36 +0000 Subject: [PATCH] Small fixes to setup.py and rules. --- debian/rules | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 041a98c..67780d5 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ install-python%: dh_clean -k dh_installdirs - python$* setup.py install --root=$(CURDIR)/debian/fluents + python$* setup.py install --root=$(CURDIR)/debian/fluents --install-data=/usr/share/fluents # Remove all *.pyc files, created in the postinst # find $(CURDIR)/debian/python-networkx -name "*.pyc" -exec rm {} ';' diff --git a/setup.py b/setup.py index 0c2b61c..1da9c16 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def configuration(parent_package='', top_path=None): config.add_data_dir('tests') config.add_scripts(['bin/fluents', 'bin/dataset']) config.add_data_dir('icons') - config.add_library('fluents') + config.add_subpackage('fluents') return config if __name__ == "__main__":