Last active
January 14, 2026 13:00
-
-
Save birkin/5b39a0169a73d09e757416ec29d5d40a to your computer and use it in GitHub Desktop.
pyproject.toml template (#llm_code_directives)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [project] | |
| name = "bdr-student-uploader-hub-project" | |
| version = "0.0.0" | |
| description = "Allows staff to easily and quickly create and configure webapp-uploader for students." | |
| readme = "https://github.com/Brown-University-Library/bdr_student_uploader_hub_project/blob/main/README.md" | |
| requires-python = ">=3.12,<3.13" | |
| dependencies = [ | |
| "beautifulsoup4~=4.13.0", | |
| "Django~=5.2.0", | |
| "httpx~=0.28.0", | |
| "lxml~=6.0.0", | |
| "python-dotenv~=1.1.0", | |
| "trio~=0.30.0", | |
| ] | |
| [dependency-groups] | |
| local = [] | |
| staging = [ | |
| "mysqlclient~=2.2.0", # not yet used on dev, but useful to confirm installation | |
| ] | |
| prod = [ | |
| "mysqlclient~=2.2.0", | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment