Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paperMoose committed Aug 24, 2023
1 parent e711172 commit b4dad45
Show file tree
Hide file tree
Showing 14 changed files with 220 additions and 155 deletions.
3 changes: 2 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[flake8]
select = B,B9,C,D,DAR,E,F,N,RST,W
ignore = E203,E501,RST201,RST203,RST301,W503
max-line-length = 80
max-line-length = 120

max-complexity = 10
docstring-convention = google
rst-roles = class,const,func,meth,mod,ref
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ venv.bak/

# mkdocs documentation
/site

.idea/*
# mypy
.mypy_cache/
.dmypy.json
Expand Down
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/SemanticDeduplicator.iml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
[black]: https://github.com/psf/black

## Overview
One of the most annoying parts of gathering strings for a list is deduplicating them. Let's fix this


One of the most annoying parts of gathering strings for a list is deduplicating them. Let's fix this

sd = SemanticDeduplicator(similarity_background="You are helping me deduplicate feature requests for a product")

Expand All @@ -32,7 +31,6 @@ One of the most annoying parts of gathering strings for a list is deduplicating

# >> Improve application speed, Implement Dark Mode


## Installation

You can install _Semantic Deduplicator_ via [pip] from [PyPI]:
Expand Down Expand Up @@ -62,7 +60,6 @@ please [file an issue] along with a detailed description.

## Credits


[pypi]: https://pypi.org/
[file an issue]: https://github.com/gkamradt/semantic-deduplicator/issues
[pip]: https://pip.pypa.io/
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


package = "semantic_deduplicator"
python_versions = ["3.10", "3.9", "3.8", "3.7"]
python_versions = ["3.10", "3.9", "3.8"]
nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
"pre-commit",
Expand Down
80 changes: 79 additions & 1 deletion poetry.lock

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

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ click = ">=8.0.1"
openai = "^0.27.9"
numpy = "^1.20"
python-dotenv = "^1.0.0"
nox-poetry = "^1.0.3"



Expand Down
Loading

0 comments on commit b4dad45

Please sign in to comment.