forked from makinacorpus/django-mapentity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (55 loc) · 1.97 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
56
57
58
59
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
test_requires = [
'mock',
'factory_boy==2.8.1',
]
setup(
name='mapentity',
version='5.0.1.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=[
'BeautifulSoup4>=4.6.0',
'Django>=1.10,<2',
'GDAL>=1.10',
'gpxpy>=1.1.2',
'django-appypod>=2.0.0',
'django-compressor>=2.2',
'django-crispy-forms>=1.6.1',
'django-embed-video>=1.1.2',
'django-filter>=1.1.0',
'django-geojson>=2.11.0',
'django-leaflet>=0.19.0',
'django-modeltranslation>=0.12.2',
'django-shapes>=0.2.0',
'django-tinymce>=2.6.0',
'django-weasyprint==0.1', # 0.5.x API changed
'djangorestframework>=3.8,<3.9', # 3.7 is not compatible with django 1.9
'djangorestframework-gis>=0.11.2',
'easy-thumbnails>=2.5.0',
'lxml>=4.2.1',
'paperclip>=2.1.2',
'requests>=2.18.4',
'WeasyPrint<0.42', # 0.42 drops support of python 2.7,
] + 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 :: 3.5'],
)