Skip to content

Commit f9393f1

Browse files
committed
Set up Poetry
1 parent d456d60 commit f9393f1

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
poetry.lock
2+
.vscode
3+
dist/

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ is to do a
2626
```bash
2727
pip install rmrl
2828
```
29-
Alternatively, you should be able to clone this repository and run
29+
Alternatively, you may clone this repository. [Poetry](https://python-poetry.org/) is used for development, so once that is installed you can run
3030
```bash
31-
pip install -e .
31+
poetry install
3232
```
33+
to get a virtual environment all set up.
3334

3435
Usage
3536
-----

pyproject.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.poetry]
2+
name = "rmrl"
3+
version = "0.1.0"
4+
description = "Render reMarkable documents to PDF"
5+
authors = ["Robert Schroll <[email protected]>"]
6+
license = "GPLv3"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.7"
10+
pdfrw = "^0.4"
11+
reportlab = "^3.5.60"
12+
svglib = "^1.0.1"
13+
xdg = "^5.0.1"
14+
15+
[tool.poetry.dev-dependencies]
16+
ipython = "^7.19.0"
17+
jedi = "0.17.2"
18+
19+
[build-system]
20+
requires = ["poetry-core>=1.0.0"]
21+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)