source: ipk/ipkg-utils-050831/setup.py@ 12663

Last change on this file since 12663 was 4860, checked in by obi, 15 years ago

[ipkg] fix

File size: 805 bytes
Line 
1import distutils.core
2
3long_description = """
4iPKG utilities implemented in Python
5
6ipkg.py implements Package class
7"""
8
9distutils.core.setup( name = 'ipkg-utils',
10 version = '1.7.3',
11 description = 'ipkg utilities implemented in python',
12 long_description = long_description,
13 author = 'Jamey Hicks',
14 author_email = 'jamey@handhelds.org',
15 license = 'GPL',
16 platforms = 'POSIX',
17 keywords = 'ipkg familiar',
18 url = 'http://www.handhelds.org/sources.html/',
19 py_modules = [ 'ipkg' ],
20 scripts = ['ipkg-compare-indexes', 'ipkg-make-index', 'ipkg-update-index', 'ipkg-build', 'ipkg-unbuild', 'ipkg-upload']
21 )
Note: See TracBrowser for help on using the repository browser.