-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (24 loc) · 955 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
[project]
name = "floridayvine"
description = "Serra Vine adapter for Floriday trade information."
authors = [
{ name = "Marijn van der Zee", email = "[email protected]" },
{ name = "gpt-4o", email = "[email protected]" },
]
requires-python = ">=3.10"
urls = { "project" = "https://github.com/serraict/vine-floriday-adapter", "docs" = "https://github.com/serraict/vine-floriday-adapter/blob/main/README.md" }
dependencies = ["typer", "requests", "floriday-supplier-client", "pymongo"]
dynamic = ["version"]
license.file = "LICENCE"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project.scripts]
floridayvine = "floridayvine:__main__.main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
markers = [
"integration: integration tests that require an operational Serra Vine system (deselect with '-m \"not integration\"')",
]