-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.27 KB
/
pyproject.toml
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
[tool.poetry]
name = "field-manager-api"
version = "0.0.1a4"
description = "Field Manager API SDK"
license = "MIT"
authors = ["Jostein Leira <9363084+josteinl@users.noreply.github.com>","Tellef Kydland <48522922+tellefk@users.noreply.github.com>"]
readme = "README.md"
homepage = "https://github.com/norwegian-geotechnical-institute/field-manager-api"
repository = "https://github.com/norwegian-geotechnical-institute/field-manager-api"
classifiers = [
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 4 - Beta",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
packages = [
{ include = "field_manager_api", from="src" },
]
[tool.poetry.dependencies]
python = ">3.10,<4.0"
matplotlib = "^3.9.2"
plotly = "^5.24.1"
nbformat = "^5.10.4"
scipy = "^1.14.1"
folium = "^0.17.0"
selenium = "^4.24.0"
webdriver-manager = "^4.0.2"
python-docx = "^1.1.2"
shapely = "^2.0.6"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
bandit = "*"
safety = "*"
pip-licenses = "*"
ruff = "*"
[tool.ruff]
line-length = 120
src = ["src", "tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"