forked from Geoportail-Luxembourg/geoportailv3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.46 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='geoportailv3',
version='1.0',
description='geoportailv3, a c2cgeoportal project',
author='camptocamp',
author_email='[email protected]',
url='http://www.camptocamp.com/geospatial-solutions',
install_requires=[
'c2cgeoportal',
'raven',
'elasticsearch',
'python-ldap',
'pyramid_ldap',
'qrcode==5.1',
"bleach==1.5.0",
"html5lib==0.9999999",
"CairoSVG==1.0.22",
"weasyprint==0.23",
"PyPDF2==1.24",
"turbomail",
"webtest",
"beautifulsoup4==4.5.1"
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
message_extractors={'geoportailv3': [
('static/**', 'ignore', None),
('**.py', 'python', None),
('templates/**', 'mako', {'input_encoding': 'utf-8'})]},
zip_safe=False,
entry_points={
'paste.app_factory': [
'main = geoportailv3:main',
],
'console_scripts': [
'create_db = geoportailv3.scripts.create_db:main',
'db2es = geoportailv3.scripts.db2es:main',
'layers2es = geoportailv3.scripts.layers2es:main',
'tooltips2pot = geoportailv3.scripts.tooltips2pot:main',
],
},
)