summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2020-11-19 22:33:18 +0200
committerJan Tuomi <jan.tuomi@valuemotive.com>2020-11-19 22:33:18 +0200
commit75c731c78880c5a31a50e166d33dcae03b76349a (patch)
treeeb87160816e3f9a50456f9f924b658cbf5f0602b /pyproject.toml
Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..74e45ed
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,20 @@
+[tool.poetry]
+name = "attain-vocab-to-anki-py"
+version = "0.1.0"
+description = ""
+authors = ["Jan Tuomi <jan.tuomi@valuemotive.com>"]
+
+[tool.poetry.dependencies]
+python = "^3.7"
+beautifulsoup4 = "^4.9.3"
+requests = "^2.25.0"
+
+[tool.poetry.dev-dependencies]
+pytest = "^5.2"
+
+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
+[tool.poetry.scripts]
+main = "attain_vocab_to_anki_py:main"