-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
61 lines (57 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
61
import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
from setuptools import find_packages
from hypermap import __version__, __description__
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as ff:
return ff.read()
setup(
name=__description__,
version=__version__,
author='',
author_email='',
url='https://github.com/cga-harvard/HHypermap',
download_url='https://github.com/cga-harvard/HHypermap',
description='Django Registry by Harvard CGA',
long_description=(read('README.md')),
classifiers=[
'Development Status :: 1 - Planning',
],
license="BSD",
keywords="hypermap django",
packages=find_packages(),
include_package_data=True,
install_requires=[
'amqplib',
'arcrest',
'celery',
'Django>=1.8, <1.9a0',
'django-debug-toolbar',
'django-pagination',
'django-taggit',
'django-extensions',
'dj-database-url',
'django-cache-url',
'django-basic-authentication-decorator',
'elasticsearch',
'pika',
'pycsw>=2.0.2',
'flake8',
'httmock',
'djmp>=0.2.10',
'MapProxy>=1.9',
'djangorestframework',
'django-celery',
'isodate',
'nose',
'OWSLib',
'Paver',
'Pillow',
'python-memcached',
'psycopg2',
'pysolr',
'requests',
'webtest',
]
)