Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
habedi committed Jun 28, 2024
1 parent c612813 commit dd6a788
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Dependencies
run: |
poetry install
poetry install -E test
- name: Run Tests
run: |
Expand Down
23 changes: 11 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "easy-letters"
version = "0.1.5"
version = "0.1.6"
description = "A Python package for generating draft application letters using generative AI"
authors = ["Hassan Abedi <[email protected]>"]
readme = "README.md"
Expand All @@ -13,16 +13,13 @@ repository = "https://github.com/habedi/easy-letters"
python = "^3.10"
openai = "^1.16.1"
qdrant-client = "^1.8.2"

[tool.poetry.group.dev.dependencies]
pylint = "^3.2.4"
pytest = "^8.2.2"
jupyter = "^1.0.0"
pytest-cov = "^5.0.0"
tiktoken = "^0.7.0"
pandas = "^2.2.2"
poetry-dynamic-versioning = "^1.4.0"
black = "^24.4.2"
pandas = { version = "^2.2.2", optional = true }
jupyter = { version = "^1.0.0", optional = true }
pytest = { version = "^8.2.2", optional = true }
black = { version = "^24.4.2", optional = true }
pytest-cov = { version = "^5.0.0", optional = true }
poetry-dynamic-versioning = { version = "^1.4.0", optional = true }
tiktoken = { version = "^0.7.0", optional = true }

[build-system]
requires = ["poetry-core"]
Expand All @@ -34,4 +31,6 @@ vcs = "git"
versioning = "semver" # Semantic Versioning

[tool.poetry.extras]
full = ["pylint", "pytest", "jupyter", "pytest-cov", "tiktoken", "pandas", "poetry-dynamic-versioning", "black"]
test = ["pytest", "pytest-cov", "black", "pandas"]
dev = ["pytest", "pytest-cov", "black", "jupyter",
"tiktoken", "pandas", "poetry-dynamic-versioning"]

0 comments on commit dd6a788

Please sign in to comment.