forked from GeotrekCE/Geotrek-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.2 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
#!/usr/bin/python
# -*- coding: utf8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='geotrek',
version=open(os.path.join(here, 'VERSION')).read().strip(),
author='Makina Corpus',
author_email='geobi@makina-corpus.com',
url='http://makina-corpus.com',
description="Geotrek",
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
open(os.path.join(here, 'docs', 'changelog.rst')).read(),
install_requires=[
# pinned by buildout
'South',
'psycopg2',
'docutils',
'GDAL',
'Pillow',
'easy-thumbnails',
'simplekml',
'pygal',
'django-extended-choices',
'django-multiselectfield',
'geojson',
'tif2geojson',
'mapentity',
'pytz',
],
license='BSD, see LICENSE file.',
packages=find_packages(),
classifiers=['Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.5'],
)