-
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.
exclude matcha and depedencies from build
- Loading branch information
1 parent
1ff4188
commit acdf1e9
Showing
3 changed files
with
35 additions
and
5 deletions.
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
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
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
[tool.poetry] | ||
name = "matcha-dl" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "Matcha-DL is a tool for supervised ontology alignment. It takes as input two ontologies and a set of mappings between them, and learns a model that can predict mappings between the two ontologies." | ||
authors = ["Pedro Cotovio <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/liseda-lab/Matcha-DL" | ||
packages = [ | ||
{ include = "matcha_dl" }, | ||
] | ||
|
||
include = ["matcha_dl/**/*"] | ||
exclude = ["matcha_dl/impl/matcha/matcha/**/*"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
|