summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--pyproject.toml17
2 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eaf75f3..2d65ee6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ __pycache__
build/
dist/
*.egg-info/
+poetry.lock
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"