This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
forked from mapproxy/mapproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (85 loc) · 2.92 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import platform
from setuptools import setup, find_packages
import pkg_resources
install_requires = [
'PyYAML>=3.0,<3.99',
]
def pillow_installed():
"""Check if Pillow is installed"""
pillow_req = pkg_resources.Requirement.parse('Pillow')
try:
pkg_resources.get_provider(pillow_req)
except pkg_resources.DistributionNotFound:
return False
else:
return True
# depend in Pillow if it is installed, otherwise depend on PIL
if pillow_installed():
install_requires.append('Pillow')
else:
install_requires.append('PIL>=1.1.6,<1.2.99')
if platform.python_version_tuple() < ('2', '6'):
# for mapproxy-seed
install_requires.append('multiprocessing>=2.6')
def long_description(changelog_releases=10):
import re
import textwrap
readme = open('README.rst').read()
changes = ['Changes\n-------\n']
version_line_re = re.compile('^\d\.\d+\.\d+\S*\s20\d\d-\d\d-\d\d')
for line in open('CHANGES.txt'):
if version_line_re.match(line):
if changelog_releases == 0:
break
changelog_releases -= 1
changes.append(line)
changes.append(textwrap.dedent('''
Older changes
-------------
See https://raw.github.com/mapproxy/mapproxy/master/CHANGES.txt
'''))
return readme + ''.join(changes)
setup(
name='MapProxy',
version="1.6.0a",
description='An accelerating proxy for web map services',
long_description=long_description(7),
author='Oliver Tonnhofer',
author_email='[email protected]',
url='http://mapproxy.org',
license='Apache Software License 2.0',
namespace_packages = ['mapproxy'],
packages=find_packages(),
include_package_data=True,
entry_points = {
'console_scripts': [
'mapproxy-seed = mapproxy.seed.script:main',
'mapproxy-util = mapproxy.script.util:main',
],
'paste.app_factory': [
'app = mapproxy.wsgiapp:app_factory',
'multiapp = mapproxy.multiapp:app_factory'
],
'paste.paster_create_template': [
'mapproxy_conf=mapproxy.config_template:PasterConfigurationTemplate'
],
'paste.filter_factory': [
'lighttpd_root_fix = mapproxy.util.wsgi:lighttpd_root_fix_filter_factory',
],
},
package_data = {'': ['*.xml', '*.yaml', '*.ttf', '*.wsgi', '*.ini']},
install_requires=install_requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: Proxy Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Scientific/Engineering :: GIS",
],
zip_safe=False,
test_suite='nose.collector',
)