2013-01-31 18:54:15 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2013-03-04 23:01:15 +00:00
|
|
|
setup(
|
|
|
|
|
name='tuf',
|
|
|
|
|
version='0.1',
|
2013-02-11 01:47:34 +00:00
|
|
|
description='A secure updater framework for Python',
|
2013-03-04 23:01:15 +00:00
|
|
|
author='https://www.updateframework.com',
|
2013-02-11 01:47:34 +00:00
|
|
|
author_email='info@updateframework.com',
|
|
|
|
|
url='https://www.updateframework.com',
|
2013-03-04 23:01:15 +00:00
|
|
|
packages=[
|
|
|
|
|
'evpy',
|
|
|
|
|
'simplejson',
|
|
|
|
|
'tuf',
|
2013-02-11 01:47:34 +00:00
|
|
|
'tuf.client',
|
2013-03-04 23:01:15 +00:00
|
|
|
'tuf.compatibility',
|
|
|
|
|
'tuf.interposition',
|
2013-02-11 01:47:34 +00:00
|
|
|
'tuf.pushtools',
|
|
|
|
|
'tuf.pushtools.transfer',
|
2013-03-04 23:01:15 +00:00
|
|
|
'tuf.repo'
|
|
|
|
|
],
|
|
|
|
|
scripts=[
|
|
|
|
|
'quickstart.py',
|
2013-02-11 01:47:34 +00:00
|
|
|
'tuf/pushtools/push.py',
|
|
|
|
|
'tuf/pushtools/receivetools/receive.py',
|
2013-03-04 23:01:15 +00:00
|
|
|
'tuf/repo/signercli.py'
|
|
|
|
|
]
|
|
|
|
|
)
|