forked from fraunhoferfokus/ckanext-govdatade
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 955 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
import sys, os
from setuptools import setup, find_packages
VERSION = '6.1.0'
with open('base-requirements.txt') as f:
required = [line.strip() for line in f]
setup(
name='ckanext-govdatade',
version=VERSION,
description="GovData.de specific CKAN extension",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='SEITENBAU GmbH',
author_email='info@seitenbau.com',
url='https://github.com/GovDataOfficial/ckanext-govdatade',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
exclude_package_data = {'': ['.gitignore', '.travis.yml', '.gitattributes', 'bin/*']},
namespace_packages=['ckanext', 'ckanext.govdatade'],
install_requires=required,
include_package_data=True,
zip_safe=False,
entry_points=\
"""
[ckan.plugins]
govdatade=ckanext.govdatade.plugins:GovDataDePlugin
""",
)