Skip to content

Commit

Permalink
Merge pull request #12 from jordan-gillard/pipenv-dependency-handling
Browse files Browse the repository at this point in the history
build: Add Pipenv for dependency management
  • Loading branch information
GalenReich authored Mar 5, 2024
2 parents ace2db5 + 93bc4b1 commit ebc1859
Show file tree
Hide file tree
Showing 5 changed files with 602 additions and 13 deletions.
25 changes: 25 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
beautifulsoup4 = "~=4.12"
selenium = "~=4.17"
tenacity = "~=8.2"
fire = "~=0.5"
jsonlines = "~=4.0"
pandas = "~=2.0"
requests = "~=2.31"
chardet = "~=5.2"
html5lib = "~=1.1"
xmltodict = "~=0.13"

[dev-packages]
black = "24.2.0"

[requires]
python_version = "3.12"

[scripts]
format = "black ."
Loading

0 comments on commit ebc1859

Please sign in to comment.