Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
recursive-include walandmarks/data *.csv
recursive-include walandmarks/images *
recursive-include walandmarks/model *.png
include walandmarks/model/final_EfficientNetb0_WA_landmarks_model.keras
recursive-include walandmarks/model *.md
Binary file removed dist/walandmark-0.0.1-py3-none-any.whl
Binary file not shown.
Binary file removed dist/walandmark-0.0.1.tar.gz
Binary file not shown.
Binary file added dist/walandmarks-0.0.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/walandmarks-0.0.1.tar.gz
Binary file not shown.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
# is very important so that the build system packages up your
# dependencies!
[project]
name = "walandmark"
name = "walandmarks"
version = "0.0.1"
authors = [
{ name="Sarah Innis" },
Expand Down Expand Up @@ -41,6 +41,10 @@ omit = [
"config-3.py",
]

[tool.setuptools.package-data]
walandmark = ["data/*.csv", "images/*", "model/*.png", "model/*.keras", "model/*.md"]


# Where can someone find out more about your project?
[project.urls]
Homepage = "https://github.com/Ivaldivi/DATA515-Image-Classification"
Expand Down
9 changes: 4 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ streamlit==1.42.0
tensorflow==2.18.0
keras==3.9.0
matplotlib
scikit-learn=1.6.1
scikit-image=0.24.0
notebook=7.3.2
imbalanced-learn=0.12.3
scikit-learn==1.6.1
scikit-image==0.24.0
notebook==7.3.2
imbalanced-learn==0.12.3
pandarallel==1.6.5
-e walandmarks
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
name="walandmarks",
version="0.1",
packages=['walandmarks'],
include_package_data = True,
package_data = {"walandmarks": ["data/*.csv", "images/*", "model/*.png", "model/*.keras", "model/*.md"],},
install_requires=[]
)
165 changes: 0 additions & 165 deletions walandmark.egg-info/PKG-INFO

This file was deleted.

23 changes: 0 additions & 23 deletions walandmark.egg-info/SOURCES.txt

This file was deleted.

Loading