-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1006 Bytes
/
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
from setuptools import setup, find_packages
version = '1.0.0'
setup(
name='ckanext-dataverse',
version=version,
description="Harvesting data processing plugin for CKAN",
long_description="""\
""",
classifiers=[],
keywords='',
author='CKAN',
author_email='ckan@okfn.org',
url='https://github.com/geosolutions-it/ckanext-dataverse',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext'],
include_package_data=True,
zip_safe=False,
install_requires=[
# dependencies are specified in pip-requirements.txt
# instead of here
],
tests_require=[
'nose',
'mock',
],
test_suite='nose.collector',
entry_points="""
""",
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
('**/templates/**.html', 'ckan', None),
],
}
)