Tidied up presentation: correct ordering, CSS, and no more debug junk.
[zzz-spline-frontpage.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(
3 name = 'spline-frontpage',
4 version = '0.1',
5 packages = find_packages(),
6
7 install_requires = [
8 'spline',
9 ],
10
11 include_package_data = True,
12
13 zip_safe = False,
14
15 entry_points = {'spline.plugins': 'frontpage = splinext.frontpage:FrontPagePlugin'},
16
17 namespace_packages = ['splinext'],
18 )