forked from dathere/ckanext-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.36 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
42
43
44
45
#!/usr/bin/env python3
# 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__ = '2.0.0'
with open('README.md', 'r') as f:
__long_description__ = f.read()
setup(
name='ckanext-contact',
version=__version__,
description='A CKAN extension for adding popup contact forms to pages.',
long_description=__long_description__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='CKAN data contact',
author='Natural History Museum',
author_email='[email protected]',
url='https://github.com/NaturalHistoryMuseum/ckanext-contact',
license='GNU GPLv3',
packages=find_packages(exclude=['tests']),
namespace_packages=['ckanext', 'ckanext.contact'],
include_package_data=True,
zip_safe=False,
install_requires=[
'requests>=2.10.0',
],
entry_points= \
'''
[ckan.plugins]
contact=ckanext.contact.plugin:ContactPlugin
''',
)