File: setup.py

package info (click to toggle)
apt-offline 1.5.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 772 kB
  • ctags: 560
  • sloc: python: 6,599; sh: 164; makefile: 2
file content (62 lines) | stat: -rw-r--r-- 2,263 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python

# -*- coding: utf-8 -*-

# Copyright 2009 Ritesh Raj Sarraf <rrs@researchut.com>
#
# Licensed under the GNU General Public License v3 and later

import textwrap
import distutils.core

distutils.core.setup(
    name='apt-offline',
    version='1.5',
    author='Ritesh Raj Sarraf',
    author_email='rrs@researchut.com',
    url='http://apt-offline.alioth.debian.org',
    #packages = [ 'apt_offline_core' ],
    description='Offline APT Package Manager',
    long_description = textwrap.dedent("""\
        apt-offline is an Offline APT Package Manager
        for Debian and derivatives
        """),
    license='GPL',
    platforms = 'Posix; MacOS X; Windows',
    classifiers=[
        'Development Status :: 3 - Testing/Beta',
        'Environment :: Console',
        'Intended Audience :: End Users',
        'License :: OSI Approved :: GPL',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Package Management',
    ],
    py_modules=['apt_offline_core.AptOfflineCoreLib',
            'apt_offline_core.AptOfflineDebianBtsLib',
            'apt_offline_core.AptOfflineLib',
            'apt_offline_core.AptOfflineMagicLib',
            'apt_offline_core.AptOffline_argparse',
            'apt_offline_gui.AptOfflineQtAbout',
	    'apt_offline_gui.AptOfflineQtCommon',
	    'apt_offline_gui.AptOfflineQtCreateProfile',
	    'apt_offline_gui.AptOfflineQtFetch',
	    'apt_offline_gui.AptOfflineQtFetchOptions',
	    'apt_offline_gui.AptOfflineQtInstall',
	    'apt_offline_gui.AptOfflineQtInstallBugList',
	    'apt_offline_gui.AptOfflineQtMain',
	    'apt_offline_gui.AptOfflineQtSaveZip',
	    'apt_offline_gui.__init__',
	    'apt_offline_gui.QtProgressBar',
	    'apt_offline_gui.resources_rc',
	    'apt_offline_gui.Ui_AptOfflineQtAbout',
	    'apt_offline_gui.Ui_AptOfflineQtCreateProfile',
	    'apt_offline_gui.Ui_AptOfflineQtFetch',
	    'apt_offline_gui.Ui_AptOfflineQtFetchOptions',
	    'apt_offline_gui.Ui_AptOfflineQtInstall',
	    'apt_offline_gui.Ui_AptOfflineQtInstallBugList',
	    'apt_offline_gui.Ui_AptOfflineQtMain',
	    'apt_offline_gui.Ui_AptOfflineQtSaveZip',
	    'apt_offline_gui.UiDataStructs',],
    scripts=['apt-offline', 'apt-offline-gui'],
)