Implemented logout and generally fixed the in/out sequence. #69
[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 = ['spline'],
8
9 include_package_data = True,
10
11 zip_safe = False,
12
13 entry_points = {'spline.plugins': 'users = spline.plugins.users:UsersPlugin'},
14
15 namespace_packages = ['spline', 'spline.plugins'],
16 )