python-tuf/setup.py

24 lines
570 B
Python
Raw Normal View History

2013-01-31 18:54:15 +00:00
#! /usr/bin/env python
from distutils.core import setup
setup(name='tuf',
version='0.0.0',
description='A secure updater framework for Python',
author='numerous',
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',
'basic_client.py',
'example_client.py',
'tuf/pushtools/push.py',
'tuf/pushtools/receivetools/receive.py',
'tuf/repo/signercli.py'])