source:
setup.py
@
116:66d9a0b47016
Last change on this file since 116:66d9a0b47016 was 31:45f3d59431c2, checked in by Ralph Meijer <ralphm@…>, 14 years ago | |
---|---|
File size: 470 bytes |
Line | |
---|---|
1 | #!/usr/bin/env python |
2 | |
3 | # Copyright (c) 2003-2008 Ralph Meijer |
4 | # See LICENSE for details. |
5 | |
6 | from setuptools import setup |
7 | |
8 | setup(name='wokkel', |
9 | version='0.4.0', |
10 | description='Twisted Jabber support library', |
11 | author='Ralph Meijer', |
12 | author_email='ralphm@ik.nu', |
13 | maintainer_email='ralphm@ik.nu', |
14 | url='http://wokkel.ik.nu/', |
15 | license='MIT', |
16 | platforms='any', |
17 | packages=[ |
18 | 'wokkel', |
19 | 'wokkel.test', |
20 | ], |
21 | ) |
Note: See TracBrowser
for help on using the repository browser.