X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=0fee88af02812a253ee81d97e54244a03c2ab434;hb=0877d55bbba8cb53d7e846e3ecbf39f8ca141327;hp=fc4a7787a29f36d4d078caec2d803186045f12f7;hpb=11eea0a6ed534b4daa1aca36237338c846259f71;p=untangle-https-backup.git diff --git a/setup.py b/setup.py index fc4a778..0fee88a 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ from distutils.core import setup setup( name = 'untangle-https-backup', - version = '0.0.1', + version = '0.0.10', author = 'Michael Orlitzky', author_email = 'michael@orlitzky.com', - url = 'http://michael.orlitzky.com/code/untangle-https-backup.php', + url = 'http://michael.orlitzky.com/code/untangle-https-backup.xhtml', scripts = ['bin/untangle-https-backup'], + packages = ['untangle'], + package_dir = {'untangle': 'src/untangle'}, description = 'Back up Untangle configurations via the web admin UI', - long_description=open('doc/README').read(), - license = 'doc/LICENSE', - requires = 'argparse' + license = 'doc/LICENSE' )