-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (27 loc) · 731 Bytes
/
setup.py
File metadata and controls
35 lines (27 loc) · 731 Bytes
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
#!/usr/bin/env python
'''
Created on Apr 29, 2012
@author: Kotaimen
'''
from distutils.core import setup
packages = ['mason',
'mason.cartographer',
'mason.composer',
'mason.core',
'mason.renderer',
'mason.tilestorage',
'mason.utils',
]
data_files = ['static/polymaps.css', 'static/polymaps.js']
scripts = ['tileserver.py', 'tilerenderer.py']
setup(
name='mason',
version='0.9.4',
author='Kotaimen, Ray',
author_email='kotaimen.c@gmail.com, gliese.q@gmail.com',
description='Another map tile library reinvented',
packages=packages,
data_files=data_files,
scripts=scripts,
requires=[], # XXX: later...
)