-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·23 lines (20 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python
from distutils.core import setup
setup(
name = 'repomirror',
version = '2.0',
description = 'Generic repository mirroring tool',
author = 'Javier Palacios',
author_email = 'javiplx@gmail.com',
license = 'GPLv2',
url = 'http://github.com/javiplx/repomirror',
download_url = 'http://r26936.ovh.net/repomirror',
scripts = [ 'repomirror' , 'reposnapshot' , 'buildrepo' , 'reposerver' , 'buildlive' , 'checkmirror' ],
packages = [ 'repolib' , 'repolib.lists' , 'repomgr' ],
requires = [ 'gnupg' ],
data_files = [
( 'share/repomirror' , [ 'docs/samples/repomirror.conf' , 'docs/samples/buildrepo.conf' ] ) ,
( 'share/repomgr/templates' , [ 'repomgr/templates/index.html' , 'repomgr/templates/detail.html' ] ) ,
( 'share/repomgr' , [ 'repomgr/repomgr.conf' ] )
]
)