mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
29 lines
613 B
Python
Executable file
29 lines
613 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=[
|
|
'evpy',
|
|
'simplejson',
|
|
'tuf',
|
|
'tuf.client',
|
|
'tuf.compatibility',
|
|
'tuf.interposition',
|
|
'tuf.pushtools',
|
|
'tuf.pushtools.transfer',
|
|
'tuf.repo'
|
|
],
|
|
scripts=[
|
|
'quickstart.py',
|
|
'tuf/pushtools/push.py',
|
|
'tuf/pushtools/receivetools/receive.py',
|
|
'tuf/repo/signercli.py'
|
|
]
|
|
)
|