python-tuf/setup.py
2013-03-11 16:34:22 -04:00

21 lines
543 B
Python
Executable file

#! /usr/bin/env python
from distutils.core import setup
setup(name='tuf',
version='0.1',
description='A secure updater framework for Python',
author='https://www.updateframework.com',
author_email='info@updateframework.com',
url='https://www.updateframework.com',
packages=['tuf',
'tuf.client',
'tuf.pushtools',
'tuf.pushtools.transfer',
'tuf.repo',
'evpy',
'simplejson'],
scripts=['quickstart.py',
'tuf/pushtools/push.py',
'tuf/pushtools/receivetools/receive.py',
'tuf/repo/signercli.py'])