diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-20 12:20:28 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-20 12:20:28 +0200 |
| commit | 8ee1505b2ebd861526c05fa3479c904aa16c5bc7 (patch) | |
| tree | 4c9dd592c1da891716f22c46c7df3a6a6fc9e661 /pyproject.toml | |
| parent | d71ef41dee820f8403bc7c57bcf3bc5756806549 (diff) | |
Initial pyproject.toml
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..34f04e2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[tool.poetry] +name = "viewstate" +version = "0.6.0" +description = "ASP.NET View State Decoder" +authors = ["Yuval Adam <_@yuv.al>"] +license = "MIT" +readme = "README.rst" + +[tool.poetry.dependencies] +python = "^3.8" + +[tool.poetry.group.dev.dependencies] +pytest = "^8.2.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |
