| Line | |
|---|
| 1 | import distutils.core
|
|---|
| 2 |
|
|---|
| 3 | long_description = """
|
|---|
| 4 | iPKG utilities implemented in Python
|
|---|
| 5 |
|
|---|
| 6 | ipkg.py implements Package class
|
|---|
| 7 | """
|
|---|
| 8 |
|
|---|
| 9 | distutils.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.