forked from allyoucanmap/geonode-mapstore-client
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.62 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-geonode-mapstore-client"
description = "Use GeoNode client in your django projects"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "GeoSolutions s.r.l.", email = "info@geosolutionsgroup.com" }
]
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.10"
]
dependencies = [
"django>=4.2,<5.3",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["requests==2.32.5"]
[project.urls]
Homepage = "https://github.com/GeoNode/geonode-mapstore-client"
Download = "https://github.com/GeoNode/geonode-mapstore-client/tarball/master"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["tests*"]
# Legge la versione dal file VERSION (equivalente al tuo setup.py)
[tool.setuptools.dynamic]
version = { file = ["VERSION"] }
[tool.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"]