aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 38672a12c4306c8414ef685fd1060bba93db3bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "reddit-nextcloud-importer"
version = "0.1.2"
license = "Apache-2.0"
homepage = "https://git.sr.ht/~gabrielgio/reddit-nextcloud-importer"
repository = "https://git.sr.ht/~gabrielgio/reddit-nextcloud-importer"
description = "Reddit to Nextcloud importer"
authors = ["Gabriel Arakaki Giovanini <mail@gabielgio.me>"]
packages = [
    { include = "reddit_nextcloud_importer" },
    { include = "test_uploader.py" }
]

[tool.poetry.dependencies]
python = "^3.10"
gallery-dl = "^1.20.5"
jsonpickle = "^2.1.0"
nextcloud-api-wrapper = "^0.2.1"
requests = "^2.27.1"
praw = "^7.5.0"

[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-xdist = "^2.5.0"
coverage = "^6.3.2"
pytest-mock = "^3.7.0"
pytest-cov = "^3.0.0"


[tool.poetry.scripts]
reddit-nextcloud-importer = "reddit_nextcloud_importer:main"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"