-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (31 loc) · 862 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
#!/usr/bin/env python
# Copyright 2015 Boxkite Inc.
# This file is part of the ckan-multisite package and is released
# under the terms of the MIT License.
# See LICENSE or http://opensource.org/licenses/MIT
from setuptools import setup
import sys
install_requires=[
'datacats',
'flask'
]
__version__ = '0.01dev'
setup(
name='ckan-multisite',
version=__version__,
description='Web wrapper around Datacats child environment functionality',
license='MIT',
author='Boxkite',
author_email='[email protected]',
url='https://github.com/boxkite/ckan-multisite',
packages=[
'ckan_multisite'
],
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
entry_points = """
[console_scripts]
ckan-multisite=ckan_multisite.api:main
""",
)