-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (35 loc) · 938 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
36
37
38
39
[tool.poetry]
name = "ideaseed"
version = "1.2.2"
description = "Note down your ideas and get them to the right place, without switching away from your terminal"
authors = ["Ewen Le Bihan <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ewen-lbh/ideaseed"
[tool.poetry.scripts]
ideaseed = "ideaseed.cli:run"
[tool.poetry.dependencies]
python = "^3.8"
gkeepapi = "^0.11.16"
docopt = "^0.6.2"
# TODO: get rid of inquirer, only use rich
inquirer = "^2.7.0"
semantic-version = "^2.8.5"
rich = "^10.1.0"
PyGithub = "^1.54.1"
urllib3 = "^1.26.4"
unicode-slugify = "^0.1.3"
PyYAML = "^5.4.1"
recordclass = "^0.14.3"
thefuzz = "^0.19.0"
python-Levenshtein = "^0.12.2"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pylint = "^2.5.3"
rope = "^0.17.0"
toml = "^0.10.1"
python-dotenv = "^0.13.0"
isort = "^5.8.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"