-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
52 lines (47 loc) · 1.55 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
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name = 'webstore',
version = '0.3a',
packages = find_packages(),
install_requires = [
'python-dateutil>=1.2',
'SQLAlchemy==0.7.3',
'Flask==0.8',
'sqlalchemy-migrate>=0.7.1'
],
setup_requires=[
'nose==1.1.2'
],
# metadata for upload to PyPI
author = 'Open Knowledge Foundation',
author_email = '[email protected]',
description = 'webstore is a RESTful data store for tabular and table-like data.',
long_description = '''Webstore can be used
as a dynamic storage for table data, allowing filtered, partial or full
retrieval and format conversion.
See the full documentation at: http://webstore.readthedocs.org/en/latest/
''',
license = 'MIT',
url = 'http://webstore.thedatahub.org/',
download_url = '',
include_package_data = True,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points = '''
[webstore.auth]
always_login = webstore.security:always_login
never_login = webstore.security:never_login
ckan = webstore.ckan:check_ckan_login
sw_auth = webstore.swauth:sw_auth
[webstore.authz]
default = webstore.security:default_has
sw_has = webstore.swauth:sw_has
'''
)