Skip to content

Commit

Permalink
Switched over fully from pipenv to hatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiannis128 committed Sep 16, 2024
1 parent 8d06788 commit 5d0aa82
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 123 deletions.
44 changes: 0 additions & 44 deletions Pipfile

This file was deleted.

61 changes: 37 additions & 24 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,24 @@ keywords = [
]

dependencies = [
"openai",
"python-dotenv",
"tiktoken",
"aiohttp",
"aiosignal",
"async-timeout",
"attrs",
"certifi",
"charset-normalizer",
"frozenlist",
"idna",
"multidict",
"regex",
"requests",
"urllib3",
"yarl",
"libclang",
"clang",
"langchain",
"langchain-openai",
"openai",
"python-dotenv==1.0.0",
"tiktoken",
"aiosignal==1.3.1",
"async-timeout==4.0.2",
"attrs==23.1.0",
"certifi==2022.12.7",
"charset-normalizer==3.1.0",
"idna==3.4",
"regex==2023.3.23",
"requests==2.29.0",
"urllib3==1.26.15",
"yarl==1.9.2",
"langchain",
"langchain-openai",
"langchain-community",
"langchain-ollama",
"lizard",
]

#[project.optional-dependencies]
Expand All @@ -53,14 +51,29 @@ dependencies = [
# "...",
#]

[tool.hatch.envs.default]
# Dependency of pytest-regtest: py
dependencies = [
"pylint",
"ipykernel",
"pytest",
"pytest-cov",
"pytest-regtest",
"py",
"twine",
"hatch",
"transformers",
"torch",
]

[project.scripts]
esbmc-ai = "esbmc_ai.__main__:main"

[project.urls]
Homepage = "https://github.com/Yiannis128/esbmc-ai"
"Source Code" = "https://github.com/Yiannis128/esbmc-ai"
Documentation = "https://github.com/Yiannis128/esbmc-ai/wiki"
Issues = "https://github.com/Yiannis128/esbmc-ai/issues"
Homepage = "https://github.com/esbmc/esbmc-ai"
"Source Code" = "https://github.com/esbmc/esbmc-ai"
Documentation = "https://github.com/esbmc/esbmc-ai/wiki"
Issues = "https://github.com/esbmc/esbmc-ai/issues"

[tool.hatch.version]
path = "esbmc_ai/__about__.py"
Expand Down
55 changes: 0 additions & 55 deletions requirements.txt

This file was deleted.

0 comments on commit 5d0aa82

Please sign in to comment.