generated from mozilla-ai/Blueprint-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
52 lines (45 loc) · 967 Bytes
/
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
51
52
[build-system]
requires = ["setuptools>=48", "setuptools_scm[toml]>=6.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "osm-ai-helper"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"fire",
"huggingface_hub",
"loguru",
"requests",
"requests_oauthlib",
"sam2",
"setuptools==75.8.2",
"scikit-image",
"shapely",
"ultralytics"
]
[project.optional-dependencies]
demo = [
"folium",
"streamlit",
"streamlit-folium"
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
]
tests = [
"pytest>=8,<9",
"pytest-sugar>=0.9.6",
]
[project.urls]
Documentation = "https://mozilla-ai.github.io/osm-ai-helper/"
Issues = "https://github.com/mozilla-ai/osm-ai-helper/issues"
Source = "https://github.com/mozilla-ai/osm-ai-helper"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
where = ["src"]
namespaces = false
[tool.setuptools_scm]