File: setup.py

package info (click to toggle)
debpartial-mirror 0.3.1%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 476 kB
  • sloc: python: 3,117; makefile: 16
file content (40 lines) | stat: -rw-r--r-- 1,256 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
##########################################################################
#
# setup.py: File to build and install the application.
#
#  debpartial-mirror is an application to make easier to build full or
#  partial mirrors from Debian or compatible archives.
#  See http://partial-mirror.alioth.debian.org/ for more information.
#    
# ====================================================================
# Copyright (c) 2002-2005 OS Systems.  All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#
#########################################################################
# Author: Otavio Salvador <otavio@ossystems.com.br>

from os import listdir
from distutils.core import setup

lib_files = []
for f in listdir('debpartial_mirror/'):
    if f[-3:] == '.py':
        lib_files.append(f)

setup(
    name = "debpartial-mirror",
    version = '0.3.0',
    author = "Otavio Salvador",
    author_email = "otavio@debian.org",
    url = "http://partial-mirror.alioth.debian.org",
    license = "GPL",
    description = "tools to create partial Debian mirrors",
    scripts = [ 'debpartial-mirror' ],
    packages = [ 'debpartial_mirror' ]
    )