forked from makinacorpus/django-mapentity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.65 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
test_requires = [
'mock',
'factory_boy == 1.1.5',
]
setup(
name='mapentity',
version='1.9.2.dev0',
author='Makina Corpus',
author_email='[email protected]',
url='https://github.com/makinacorpus/django-mapentity',
download_url="http://pypi.python.org/pypi/mapentity/",
description="Generic CRUD with maps",
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
open(os.path.join(here, 'CHANGES')).read(),
license='BSD, see LICENSE file.',
install_requires=[
'Django >= 1.4',
'GDAL >= 1.9',
'gpxpy',
'BeautifulSoup4',
'requests',
'django-modeltranslation',
'django-shapes',
'django-floppyforms',
'django-crispy-forms',
'django-compressor',
'django-filter',
'easy-thumbnails',
'django-tinymce',
'djangorestframework',
'django-appypod>=0.0.2',
'django-leaflet>=0.14',
'django-geojson>=2',
'paperclip',
] + test_requires,
tests_requires=test_requires,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=['Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7'],
)