forked from GeotrekCE/Geotrek-rando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 736 Bytes
/
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
#!/usr/bin/python
# -*- coding: utf8 -*-
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
install_requires = [
'Django >=1.5,<1.7',
'requests >=2.2,<2.3',
'termcolor == 1.1.0',
'django-leaflet == 0.13.5',
'django-localeurl == 2.0.1',
'django-pjax == 1.2',
'easydict == 1.4',
'django_compressor == 1.3',
'django-ganalytics == 0.2',
'django-recaptcha == 0.0.9',
'landez == 2.2.0',
'BeautifulSoup == 3.2.1'
]
setup(
name='rando',
version=open(os.path.join(here, 'VERSION')).read().strip(),
author='Makina Corpus',
author_email='geobi@makina-corpus.com',
url='http://makina-corpus.com',
install_requires=install_requires
)