-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# encoding: utf-8
from setuptools import find_packages, setup
__version__ = u'1.0.0-alpha'
with open(u'README.md', u'r') as f:
__long_description__ = f.read()
setup(
name=u'ckanext-spatialdata',
version=__version__,
description=u'A CKAN extension that provides geospatial awareness of datastore data.',
long_description=__long_description__,
classifiers=[
u'Development Status :: 3 - Alpha',
u'Framework :: Flask',
u'Programming Language :: Python :: 2.7'
],
keywords=u'CKAN data spatialdata',
author=u'Steve Saylor',
author_email=u'[email protected]',
url=u'https://github.com/wprdc/ckanext-spatialdata',
license=u'AGPLv3',
packages=find_packages(exclude=[u'tests']),
namespace_packages=[u'ckanext', u'ckanext.spatialdata'],
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points= \
u'''
[ckan.plugins]
spatialdata=ckanext.spatialdata.plugin:spatialdataPlugin
[paste.paster_command]
spatialdata=ckanext.spatialdata.commands.spatialdata:spatialdataCommand
''',
)