from setuptools import setup setup( name = "firehose", version = "0.1", packages = ["firehose", "debian"], package_data={ "firehose": ["plugin/*.py"] }, scripts = [ "firehose.sh" ], # This is because morph won't find it as a plugin if it is # installed as a .egg file zip_safe = False )