diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-12 00:38:28 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-12 00:38:28 +0000 |
commit | f3235f8b762a2a404859c4c46d58ac7089c772bb (patch) | |
tree | 0e72ca7d1558016733c4044fe9f42ab846d2ca12 /pyproject.toml | |
parent | 8b6a8be2c8930ecd0bab67cba37b7b8525f2443a (diff) | |
download | troggle-f3235f8b762a2a404859c4c46d58ac7089c772bb.tar.gz troggle-f3235f8b762a2a404859c4c46d58ac7089c772bb.tar.bz2 troggle-f3235f8b762a2a404859c4c46d58ac7089c772bb.zip |
using uv not pip
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 38 |
1 files changed, 28 insertions, 10 deletions
diff --git a/pyproject.toml b/pyproject.toml index fb3b412..83a8473 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,28 @@ -[tool.black]
-line-length = 120
-
-[tool.isort]
-profile = 'black'
-line-length=120
-
-[tool.ruff]
-line-length=120
-ignore = ["E402"]
\ No newline at end of file +[tool.black] +line-length = 120 + +[tool.isort] +profile = 'black' +line-length=120 + +[tool.ruff] +line-length=120 +ignore = ["E402"] + +[project] +name = "troggle" +version = "0.1.0" +description = "Troggle - cave data management" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "beautifulsoup4>=4.12.3", + "black>=24.10.0", + "coverage>=7.6.9", + "deptry>=0.21.1", + "django>=5", + "isort>=5.13.2", + "piexif>=1.1.3", + "pillow>=11.0.0", + "unidecode>=1.3.8", +] |