Skip to content

Commit

Permalink
build: generate a requirements.txt file for Heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Nov 15, 2024
1 parent c296edc commit 58c8219
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ include = [
"/readalongs",
]

[tool.hatch.envs.prod]
features = [ "api" ]
type = "pip-compile"
python = "3.11"
lock-filename = "requirements.txt"

[project.urls]
Homepage = "https://github.com/ReadAlongs/"
Documentation = "https://readalongs.github.io/Studio/"
Expand Down
129 changes: 129 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
#
# This file is autogenerated by hatch-pip-compile with Python 3.11
#
# - audioop-lts; python_version >= "3.13"
# - chevron==0.14.0
# - click>=8.0.4
# - coloredlogs>=10.0
# - fastapi>=0.103.0
# - g2p<3,>=1.1.20230822
# - lxml>=4.9.4
# - numpy>=1.20.2
# - pydantic<3,>=1.8.2
# - pydub>=0.23.1
# - pympi-ling<2.0,>=1.69
# - python-slugify==5.0.0
# - requests>=2.31.0
# - soundswallower~=0.6.0
# - webvtt-py==0.4.2
# - gunicorn>=23.0.0; platform_system != "Windows"
# - uvicorn>=0.30.1
#

annotated-types==0.7.0
# via pydantic
anyio==4.6.2.post1
# via starlette
certifi==2024.8.30
# via requests
charset-normalizer==3.4.0
# via requests
chevron==0.14.0
# via hatch.envs.prod
click==8.1.7
# via
# hatch.envs.prod
# g2p
# uvicorn
colorama==0.4.6
# via
# click
# tqdm
coloredlogs==15.0.1
# via
# hatch.envs.prod
# g2p
docopt==0.6.2
# via webvtt-py
editdistance==0.8.1
# via panphon
et-xmlfile==2.0.0
# via openpyxl
fastapi==0.115.5
# via hatch.envs.prod
g2p==2.2.0
# via hatch.envs.prod
h11==0.14.0
# via uvicorn
humanfriendly==10.0
# via coloredlogs
idna==3.10
# via
# anyio
# requests
lxml==5.3.0
# via hatch.envs.prod
munkres==1.1.4
# via panphon
numpy==2.1.3
# via
# hatch.envs.prod
# panphon
openpyxl==3.1.5
# via g2p
panphon==0.20.0
# via g2p
pydantic==2.8.2
# via
# hatch.envs.prod
# fastapi
# g2p
pydantic-core==2.20.1
# via pydantic
pydub==0.25.1
# via hatch.envs.prod
pympi-ling==1.70.2
# via hatch.envs.prod
pyreadline3==3.5.4
# via humanfriendly
python-slugify==5.0.0
# via hatch.envs.prod
pyyaml==6.0.2
# via
# g2p
# panphon
regex==2024.11.6
# via
# g2p
# panphon
requests==2.32.3
# via hatch.envs.prod
sniffio==1.3.1
# via anyio
soundswallower==0.6.4
# via hatch.envs.prod
starlette==0.41.2
# via fastapi
text-unidecode==1.3
# via
# g2p
# python-slugify
tqdm==4.67.0
# via g2p
typing-extensions==4.12.2
# via
# fastapi
# g2p
# pydantic
# pydantic-core
unicodecsv==0.14.1
# via panphon
urllib3==2.2.3
# via requests
uvicorn==0.32.0
# via hatch.envs.prod
webvtt-py==0.4.2
# via hatch.envs.prod

# The following packages are considered to be unsafe in a requirements file:
# setuptools

0 comments on commit 58c8219

Please sign in to comment.