-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0b9ffa
commit 0bb7c08
Showing
3 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "nachet_datastore" | ||
version = "0.0.1" | ||
version = "0.1.0" | ||
authors = [ | ||
{ name="Francois Werbrouck", email="[email protected]" }, | ||
{ name="Sylvanie You", email[email protected]" | ||
] | ||
description = "Data management python layer" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "nachet_datastore" | ||
version = "0.1.0" | ||
authors = [ | ||
{ name="Francois Werbrouck", email="[email protected]" }, | ||
{ name="Sylvanie You", email[email protected]" | ||
] | ||
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 = ["Nachet","ailab"] | ||
|
||
[tool.setuptools] | ||
packages = ["datastore", "datastore.db", "datastore.bin", | ||
"datastore.db.queries", "datastore.db.queries.picture", | ||
"datastore.db.queries.seed", "datastore.db.queries.user", | ||
"datastore.db.queries.machine_learning","datastore.db.queries.inference", "datastore.db.queries.analysis", | ||
"datastore.db.metadata","datastore.db.metadata.picture", "datastore.db.metadata.picture_set", | ||
"datastore.db.metadata.validator", | ||
"datastore.db.metadata.machine_learning","datastore.db.metadata.inference", | ||
"datastore.blob","datastore.blob.azure_storage_api"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html | ||
# [tool.setuptools.packages.find] | ||
# where = ["ailab"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/ai-cfia/nachet-datastore" | ||
"Bug Tracker" = "https://github.com/ai-cfia/nachet-datastore/issues" | ||
Repository = "https://github.com/ai-cfia/nachet-datastore" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "fertiscan_datastore" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Francois Werbrouck", email="[email protected]" } | ||
] | ||
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 = ["datastore", "datastore.FertiScan", "datastore.bin","datastore.db", | ||
"datastore.db.queries", "datastore.db.queries.picture", | ||
"datastore.db.queries.user", | ||
"datastore.db.queries.inspection","datastore.db.queries.label","datastore.db.queries.metric", | ||
"datastore.db.queries.nutrients","datastore.db.queries.organization","datastore.db.queries.specification", | ||
"datastore.db.queries.sub_label", | ||
"datastore.db.metadata","datastore.db.metadata.picture", "datastore.db.metadata.picture_set", | ||
"datastore.db.metadata.validator", | ||
"datastore.blob","datastore.blob.azure_storage_api"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html | ||
# [tool.setuptools.packages.find] | ||
# where = ["ailab"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/ai-cfia/nachet-datastore" | ||
"Bug Tracker" = "https://github.com/ai-cfia/nachet-datastore/issues" | ||
Repository = "https://github.com/ai-cfia/nachet-datastore" |