comparison setup.py @ 225:c15c2fc058ed

Include example in packages.
author Ralph Meijer <ralphm@ik.nu>
date Sun, 13 Feb 2011 21:34:18 +0100
parents f94c3eb38b75
children 564ae55219e1
comparison
equal deleted inserted replaced
224:55b45c7dccb4 225:c15c2fc058ed
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2003-2009 Ralph Meijer 3 # Copyright (c) 2003-2011 Ralph Meijer
4 # See LICENSE for details. 4 # See LICENSE for details.
5 5
6 import sys 6 import sys
7 from setuptools import setup 7 from setuptools import setup
8 from idavoll import __version__ 8 from idavoll import __version__
28 ], 28 ],
29 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py', 29 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py',
30 'twisted/plugins/idavoll_http.py']}, 30 'twisted/plugins/idavoll_http.py']},
31 data_files=[('share/idavoll', ['db/pubsub.sql', 31 data_files=[('share/idavoll', ['db/pubsub.sql',
32 'db/gateway.sql', 32 'db/gateway.sql',
33 'db/to_idavoll_0.8.sql'])], 33 'db/to_idavoll_0.8.sql',
34 'doc/examples/idavoll.tac',
35 ])],
34 zip_safe=False, 36 zip_safe=False,
35 install_requires=install_requires, 37 install_requires=install_requires,
36 ) 38 )