Skip to content

Commit

Permalink
Configure root requirements for monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
rdgfuentes committed Jun 28, 2024
1 parent ef8785d commit 363ff2c
Show file tree
Hide file tree
Showing 6 changed files with 125 additions and 1 deletion.
54 changes: 54 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
#
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=requirements-dev.txt requirements/dev.txt
#
black==24.4.2
# via -r requirements/dev.txt
build==1.2.1
# via pip-tools
click==8.1.7
# via
# black
# pip-tools
flake8==7.1.0
# via -r requirements/dev.txt
importlib-metadata==8.0.0
# via build
isort==5.13.2
# via -r requirements/dev.txt
mccabe==0.7.0
# via flake8
mypy-extensions==1.0.0
# via black
packaging==24.1
# via
# black
# build
pathspec==0.12.1
# via black
pip-tools==7.4.1
# via -r requirements/dev.txt
platformdirs==4.2.2
# via black
pycodestyle==2.12.0
# via flake8
pyflakes==3.2.0
# via flake8
pyproject-hooks==1.1.0
# via
# build
# pip-tools
tomli==2.0.1
# via
# black
# build
# pip-tools
typing-extensions==4.12.2
# via black
wheel==0.43.0
# via pip-tools
zipp==3.19.2
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
# pip
# setuptools
3 changes: 2 additions & 1 deletion requirements-pip.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pip==24.1.1
pip~=24.1
pip-tools~=7.4
61 changes: 61 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=requirements.txt requirements/all.txt
#
black==24.4.2
# via -r requirements/dev.in
click==8.1.7
# via black
coverage[toml]==7.5.4
# via pytest-cov
exceptiongroup==1.2.1
# via pytest
flake8==7.1.0
# via -r requirements/dev.in
iniconfig==2.0.0
# via pytest
isort==5.13.2
# via -r requirements/dev.in
jinja2==3.1.4
# via pytest-html
markupsafe==2.1.5
# via jinja2
mccabe==0.7.0
# via flake8
mypy-extensions==1.0.0
# via black
packaging==24.1
# via
# black
# pytest
pathspec==0.12.1
# via black
platformdirs==4.2.2
# via black
pluggy==1.5.0
# via pytest
pycodestyle==2.12.0
# via flake8
pyflakes==3.2.0
# via flake8
pytest==8.2.2
# via
# -r requirements/test.in
# pytest-cov
# pytest-html
# pytest-metadata
pytest-cov==5.0.0
# via -r requirements/test.in
pytest-html==4.1.1
# via -r requirements/test.in
pytest-metadata==3.1.1
# via pytest-html
tomli==2.0.1
# via
# black
# coverage
# pytest
typing-extensions==4.12.2
# via black
2 changes: 2 additions & 0 deletions requirements/all.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r dev.in
-r test.in
3 changes: 3 additions & 0 deletions requirements/dev.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
black~=24.4
flake8~=7.1
isort~=5.13
3 changes: 3 additions & 0 deletions requirements/test.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pytest~=8.2
pytest-html~=4.1
pytest-cov~=5.0

0 comments on commit 363ff2c

Please sign in to comment.