-
Notifications
You must be signed in to change notification settings - Fork 0
/
fertiscan_pyproject.toml
37 lines (30 loc) · 1.02 KB
/
fertiscan_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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fertiscan_datastore"
version = "1.0.10"
authors = [
{ name="Francois Werbrouck", email="francois.werbrouck@inspection.gc.ca" },
{ name="Kotchikpa Guy-Landry Allagbe" , email = "kotchikpaguy-landry.allagbe@inspection.gc.ca"}
]
description = "Data management python layer"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
license = { file = "LICENSE" }
keywords = ["FertiScan","ailab"]
[tool.setuptools.packages.find]
where = ["."]
include = ["fertiscan*", "datastore*"]
[tool.setuptools.dynamic]
dependencies = {file = ["./requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/ai-cfia/ailab-datastore/fertiscan"
"Bug Tracker" = "https://github.com/ai-cfia/ailab-datastore/issues"
Repository = "https://github.com/ai-cfia/ailab-datastore"