Ported GTS Phase I over from spline-pokedex.
[zzz-spline-gts.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(
3 name = 'spline-gts',
4 version = '0.1',
5 packages = find_packages(),
6
7 install_requires = [
8 'spline',
9 'spline-users',
10 'pokedex',
11 ],
12
13 include_package_data = True,
14
15 zip_safe = False,
16
17 entry_points = {'spline.plugins': 'gts = spline.plugins.gts:GTSPlugin'},
18
19 namespace_packages = ['spline', 'spline.plugins'],
20 )