forked from GeoNode/geonode-mapstore-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 1.27 KB
/
setup.cfg
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
[metadata]
name = django-geonode-mapstore-client
version = 4.0.6
description = Use GeoNode client in your django projects
author = Alessio Fabiani
author_email = alessio.fabiani@geo-solutions.it
url = https://github.com/GeoNode/geonode-mapstore-client
download_url = https://github.com/GeoNode/geonode-mapstore-client/tarball/master
keywords = django, mapstore, mapstore2
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Internet :: WWW/HTTP
Programming Language :: Python :: 3.7
[options]
packages = find:
include_package_data = True
zip_safe = False
install_requires =
django >= 3.2.0, < 4.0
idna >= 2.5, < 2.11
requests >= 2.13.0
Markdown >= 2.6.11
MarkupSafe >= 1.1.1
djangorestframework <= 3.12.0, >= 3.8.0
urllib3 >= 1.25
[options.packages.find]
exclude = tests
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120
exclude=geonode_mapstore_client/*/migrations/*,geonode_mapstore_client/mapstore2_adapter/*/migrations/*,management,scripts,docs,static,migrations,geonode_mapstore_client/mapstore2_adapter/*settings.py
ignore=E121,E122,E124,E126,E226