-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 943 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
40
41
42
43
[tool.poetry]
name = "autojournal"
version = "0.1.0"
description = ""
authors = ["Kovas Palunas <kovas.palunas@gmail.com>"]
packages = [
{ include = "autojournal" }
]
[tool.poetry.scripts]
report_generator = "autojournal.report_generator:main"
gcal_aggregator = "autojournal.gcal_aggregator:main"
[tool.poetry.dependencies]
python = "^3.8"
python-dateutil = "^2.8.1"
google-auth-oauthlib = "^0.4.4"
google-api-python-client = "^2.2.0"
sortedcontainers = "^2.3.0"
pandas = "^1.2.4"
plotly = "^4.14.3"
click = "^7.1.2"
bs4 = "^0.0.1"
lxml = "^4.6.3"
psutil = "^5.8.0"
selfspy = {git = "https://github.com/kovasap/selfspy.git", branch="master"}
yapf = "^0.31.0"
python3-xlib = "^0.15"
geopy = "^2.1.0"
altair = "^5.0.0"
[tool.poetry.dev-dependencies]
[tool.yapf]
based_on_style = "google"
indent_width = 2
[tool.pylint]
indent-string = ' '
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"