1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00
fdroidserver/setup.py

17 lines
443 B
Python
Raw Normal View History

#!/usr/bin/python
from distutils.core import setup
setup(name='FDroidServer',
version='0.1',
description='F-Droid Server Tools',
author='The F-Droid Project',
author_email='admin@f-droid.org',
url='http://f-droid.org',
packages=['fdroidserver'],
scripts=['fdroid'],
data_files = [('', ['COPYING', 'config.sample.py']),
('docs', ['docs/*.texi'])
]
)