forked from makinacorpus/landez
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.1 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.1 KB
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
#!/usr/bin/python
# -*- coding: utf8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(name = 'landez',
version = '1.4',
license = 'LGPL',
description = 'Build a MBTiles file from a tiles server or a Mapnik stylesheet.',
author = "Mathieu Leplatre",
author_email = "mathieu.leplatre@makina-corpus.com",
url = "https://github.com/makinacorpus/landez/",
download_url = "http://pypi.python.org/pypi/landez/",
long_description = open(os.path.join(here, 'README')).read(),
provides = ['landez'],
entry_points = dict(
console_scripts = [
]),
install_requires=[
'sqlalchemy==0.7.3'
],
packages = find_packages(),
platforms = ('any',),
keywords = ['MBTiles', 'Mapnik'],
classifiers = ['Programming Language :: Python :: 2.6',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Utilities',
'Development Status :: 3 - Alpha'],
)