-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (70 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
74 lines (70 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "openatlas"
version = "9.2.0"
description = "An open source database system for handling complex historical and archaeological data"
readme = "README.md"
license = "GPL-2.0-only"
authors = [
{ name = "OpenAtlas Team", email = "openatlas@oeaw.ac.at" }
]
requires-python = ">=3.13"
dependencies = [
"bcrypt~=4.2.0",
"beautifulsoup4~=4.13.4",
"email-validator==2.2.0",
"flasgger==0.9.7.1",
"flask==3.1.1",
"flask-babel==4.0.0",
"flask-cors==6.0.1",
"flask-bcrypt==1.0.1",
"flask-jwt-extended==4.7.1",
"flask-login==0.6.3",
"flask-restful==0.3.10",
"flask-wtf==1.2.2",
"levenshtein==0.27.1",
"itsdangerous==2.2.0",
"jinja2==3.1.6",
"lxml~=5.3.0",
"markdown==3.7",
"markupsafe==2.1.5",
"numpy==2.2.4",
"pandas==2.2.3",
"psycopg2-binary>=2.9.11",
"pyjwt==2.10.1",
"python-dateutil==2.9.0",
"python-gettext==4.0",
"python-magic==0.4.27",
"pyyaml~=6.0.1",
"rapidfuzz>=3.14.3",
"rdflib==7.1.1",
"requests==2.32.3",
"shapely~=2.1.0",
"svgwrite~=1.4.3",
"unidecode~=1.3.8",
"validators~=0.20.0",
"wand==0.6.13",
"werkzeug==3.1.3",
"wtforms==3.1.2",
"xmltodict==0.13.0",
"fiona>=1.10.0",
]
[project.optional-dependencies]
dev = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.0.2",
"sphinxcontrib-openapi==0.8.4",
"sphinx-design==0.6.1",
"coverage>=7.6.0",
"pytest>=5.1.0",
"pytest-cov>=5.0.0",
]
[project.urls]
Homepage = "https://openatlas.eu/"
Repository = "https://github.com/craws/OpenAtlas"
Issues = "https://redmine.openatlas.eu/projects/openatlas/issues"
Roadmap = "https://redmine.openatlas.eu/projects/openatlas/roadmap"
Wiki = "https://redmine.openatlas.eu/projects/openatlas/wiki"
Documentation = "https://redmine.openatlas.eu/projects/openatlas/wiki/Technical_Documentation"
"User Manual" = "https://manual.openatlas.eu/"
[tool.setuptools]
packages = ["openatlas"]