forked from get-thriving/thrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (48 loc) · 1.32 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "jupiter"
version = "0.1.0"
description = """Jupiter is a small tool for _life planning_. It provides goals management,
task tracking, habit building, chores management, smart lists, metrics, a personal relationship manager, etc.
all in a unified package."""
authors = ["Horia Coman <horia141@gmail.com>"]
license = "MIT"
homepage = "https://jupiter-goals.readthedocs.io/"
readme = "README.md"
repository = "https://github.com/horia141/jupiter"
documentation = "https://jupiter-goals.readthedocs.io/"
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
notion = { git = "https://github.com/horia141/notion-py", branch = "dont-update-views" }
pendulum = "2.0.5"
python-dotenv = "0.20.0"
pytz = "2022.1"
requests = "2.27.1"
SQLAlchemy = "1.4.34"
alembic = "1.7.7"
coverage = "6.3.2"
emoji = "1.7.0"
rich = "12.4.4"
email-validator = "1.3.0"
[tool.poetry.dev-dependencies]
pylint = "2.13.4"
yamllint = "1.26.3"
pyflakes = "2.5.0"
bandit = "1.7.4"
pydocstyle = "6.1.1"
vulture = "2.6"
mkdocs = "1.4.1"
mypy = "0.942"
types-requests = "2.27.16"
icecream = "2.1.2"
black = "22.3"
pathspec = "0.9.0"
click = "8.0.0"
selenium = "4.1.3"
webdriver-manager = "3.5.4"
libyear = "0.2.1"
pytest = "7.1.2"
pytest-html-reporter = "0.2.9"
pyinstaller = "5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"