]> gitweb.michael.orlitzky.com - untangle-https-backup.git/blob - setup.py
Initial commit, skeleton of a project.
[untangle-https-backup.git] / setup.py
1 from distutils.core import setup
2
3 setup(
4 name = 'untangle-https-backup',
5 version = '0.0.1',
6 author = 'Michael Orlitzky',
7 author_email = 'michael@orlitzky.com',
8 url = 'http://michael.orlitzky.com/code/untangle-https-backup.php',
9 scripts = ['bin/untangle-https-backup'],
10 description = 'Back up Untangle configurations via the web admin UI',
11 long_description=open('doc/README').read(),
12 license = 'doc/LICENSE',
13 requires = 'argparse'
14 )