Created a simple shoutbox plugin for spline.
[spline-shoutbox.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(
3 name = 'spline-shoutbox',
4 version = '0.1',
5 package_dir = {'': 'lib'},
6 packages = find_packages('lib'),
7
8 install_requires = ['spline'],
9
10 include_package_data = True,
11
12 zip_safe = False,
13
14 entry_points = {'spline.plugins': 'shoutbox = spline.plugins.shoutbox:ShoutboxPlugin'},
15
16 namespace_packages = ['spline', 'spline.plugins'],
17 )
18