]> gitweb.michael.orlitzky.com - untangle-https-backup.git/blobdiff - setup.py
src/untangle/untangle.py: use cleaner way of disabling verification.
[untangle-https-backup.git] / setup.py
index fc4a7787a29f36d4d078caec2d803186045f12f7..0fee88af02812a253ee81d97e54244a03c2ab434 100644 (file)
--- 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'
 )