-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.14 KB
/
setup.py
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
41
#!/usr/bin/env python
# encoding: utf-8
#
# This file is part of ckanext-contact
# Created by the Natural History Museum in London, UK
from setuptools import find_packages, setup
__version__ = u'1.1.0-alpha'
with open(u'README.md', u'r') as f:
__long_description__ = f.read()
setup(
name=u'ckanext-contact',
version=__version__,
description=u'A CKAN extension for adding popup contact forms to pages.',
long_description=__long_description__,
classifiers=[
u'Development Status :: 3 - Alpha',
u'Framework :: Flask',
u'Programming Language :: Python :: 2.7'
],
keywords=u'CKAN data contact',
author=u'Natural History Museum',
author_email=u'[email protected]',
url=u'https://github.com/NaturalHistoryMuseum/ckanext-contact',
license=u'GNU GPLv3',
packages=find_packages(exclude=[u'tests']),
namespace_packages=[u'ckanext', u'ckanext.contact'],
include_package_data=True,
zip_safe=False,
install_requires=[
'requests>=2.10.0',
],
entry_points= \
u'''
[ckan.plugins]
contact=ckanext.contact.plugin:ContactPlugin
''',
)