Skip to content

Commit

Permalink
Get build file structure ready
Browse files Browse the repository at this point in the history
  • Loading branch information
DTheLegend committed Feb 10, 2023
1 parent e138681 commit b8e4ab5
Show file tree
Hide file tree
Showing 19 changed files with 130 additions and 517 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,14 @@ cython_debug/
# For ignoring pytorch specific things
*.pth
*.pt
*.pkl
*.pkl

# Ignore our datasets
DataSet/

# Ignore autogenerated package info
/*/info
/info

# Ignore vscode things
**/.vscode/
File renamed without changes.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
File renamed without changes.
1 change: 0 additions & 1 deletion cli/.gitignore

This file was deleted.

Empty file added cli/CHANGELOG.md
Empty file.
38 changes: 22 additions & 16 deletions cli/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ packages = [{include = "linnaeus"}]

[tool.poetry.dependencies]
python = "3.10.6"
linnaeus-core = {path = "../core"}
linnaeus-train = {path = "../train", optional=true}
linnaeus-core = "^0.1.0"
linnaeus-train = "^0.1.0"

[build-system]
requires = ["poetry-core"]
Expand Down
Empty file added core/CHANGELOG.md
Empty file.
8 changes: 7 additions & 1 deletion core/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ opencv-python = "^4.7.0.68"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.extras]
cli = ["linnaeus-cli"]
train = ["linnaeus-train"]
Loading

0 comments on commit b8e4ab5

Please sign in to comment.