-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 933 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "daeclipse-cli"
version = "0.0.1"
description = "Reverse-engineered Python CLI for DeviantArt Eclipse functionality"
readme = "README.md"
authors = ["Kathryn DiPippo <[email protected]>"]
license = "MIT"
homepage = "https://kathryndipippo.com/daeclipse-cli/"
repository = "https://github.com/Pepper-Wood/daeclipse-cli"
keywords = ["python", "deviantart", "cli"]
[tool.poetry.urls]
Issues = "https://github.com/Pepper-Wood/daeclipse-cli/issues"
[tool.poetry.scripts]
daeclipse = "daeclipse_cli.cli:app"
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
cli-ui = ">=0.14.1,<0.16.0"
daeclipse = "^0.1.0"
deviantart = "^0.1.5"
pick = "^1.0.0"
progress = "^1.6"
python-dotenv = "^0.19.0"
tabulate = "^0.8.9"
typer = {extras = ["all"], version = "^0.3.2"}
[tool.poetry.dev-dependencies]
pytest = "^6.2"
mypy = "^0.910"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"