-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
76 lines (68 loc) · 2.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
tests_require = [
'freezegun',
'factory_boy',
'coverage',
'tblib'
]
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'mapentity', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
setup(
name='mapentity',
version=VERSION,
author='Makina Corpus',
author_email='[email protected]',
url='https://github.com/makinacorpus/django-mapentity',
download_url="https://pypi.python.org/pypi/mapentity/",
description="Generic CRUD with maps",
long_description=(open(os.path.join(here, 'README.rst')).read()),
license='BSD, see LICENSE file.',
install_requires=[
'BeautifulSoup4',
'cairocffi',
'Django',
'tzdata',
'django-appypod',
'django-compressor',
'django-crispy-forms>=2.0',
'crispy-bootstrap4',
'django-embed-video',
'django-filter',
'django-leaflet>=0.19,<0.20', # leaflet 0.7.x
'django-modeltranslation<0.19.5', # does not support python 3.8
'django-tinymce>=3',
'django-weasyprint',
'djangorestframework',
'djangorestframework-gis',
'djangorestframework-datatables',
'easy-thumbnails',
'fiona',
'gpxpy',
'lxml',
'paperclip',
'requests',
'weasyprint',
],
tests_require=tests_require,
extras_require={
'dev': tests_require + [
'django-debug-toolbar<3.3', # 3.3.0 is not compatible with Django 2.2
'flake8'
]
},
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.8',
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'],
)