aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-02-03 18:14:17 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-02-03 18:14:17 +0000
commitb0d6247ce59a54d0b9930b9caacd34cd2075eee8 (patch)
treea30deafc062065d81441ee4f086ff574c008b881 /pyproject.toml
downloadpaper2remarkable-b0d6247ce59a54d0b9930b9caacd34cd2075eee8.tar.gz
paper2remarkable-b0d6247ce59a54d0b9930b9caacd34cd2075eee8.zip
Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..6f67ecd
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,18 @@
+[tool.poetry]
+name = "arxiv2remarkable"
+version = "0.1.0"
+description = "Download an arXiv paper and send it to reMarkable"
+authors = ["Gertjan van den Burg <gertjanvandenburg@gmail.com>"]
+license = "MIT"
+
+[tool.poetry.dependencies]
+python = "^3.5"
+bs4 = "^0.0.1"
+requests = "^2.21"
+loguru = "^0.2.5"
+
+[tool.poetry.dev-dependencies]
+
+[build-system]
+requires = ["poetry>=0.12"]
+build-backend = "poetry.masonry.api"