Ensure colorbars can't escape their containers. #352
[zzz-spline-users.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(
3 name = 'spline-users',
4 version = '0.1',
5 packages = find_packages(),
6
7 install_requires = [
8 'spline',
9 'python-openid',
10 ],
11
12 include_package_data = True,
13
14 zip_safe = False,
15
16 entry_points = {'spline.plugins': 'users = splinext.users:UsersPlugin'},
17
18 namespace_packages = ['splinext'],
19 )