This repository has been archived by the owner on Oct 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
69 lines (65 loc) · 2.57 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import os
long_description = open('README.rst').read()
setup(
name = 'Studio',
version = '0.5.1',
license = 'GPLv3',
description = 'Web-based administration interface for MapServer',
long_description = long_description,
author = 'Camptocamp',
author_email = '[email protected]',
url = 'http://camptocamp.github.com/Studio/',
keywords = 'GIS management mapserver',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Pylons',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
install_requires = [
"Pylons>=0.9.7,<=0.9.7.99",
"SQLAlchemy>=0.5,<=0.5.99",
"Mako>=0.2.3,<=0.2.99",
"repoze.who>=1.0,<=1.0.99",
"repoze.who-friendlyform>=1.0b3,<=1.0.99",
"repoze.what_quickstart>=1.0,<=1.0.99",
"repoze.what_pylons>=1.0rc4,<=1.0.99",
"WebTest==1.2",
"httplib2>=0.6.0,<=0.6.99",
"Babel>=0.9.5,<=0.9.99",
"webob==1.0.1", # repoze login doesn't work with WebOb>=1.0.2
],
setup_requires = ["PasteScript==dev,>=1.6.3dev-r7326"],
packages = find_packages(exclude=['ez_setup']),
include_package_data = True,
test_suite = 'nose.collector',
package_data = {'studio': ['i18n/*/LC_MESSAGES/*.mo']},
message_extractors = {'studio': [
('**.py', 'python', None),
('templates/**.html', 'mako', None),
('public/**', 'ignore', None)]},
zip_safe = False,
paster_plugins = ['PasteScript', 'Pylons'],
entry_points = """
[paste.app_factory]
main = studio.config.middleware:make_app
[paste.app_install]
main = studio.config.installer:StudioInstaller
""",
extras_require = {
'MySQL': ["mysql-python>=1.2"],
'PostgreSQL': ["psycopg2"],
},
)