-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (52 loc) · 1.28 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "notion-gcal-sync"
version = "1.1.12"
description = "Bidirectional synchronize calendar events within notion and google calendar"
readme = "README.md"
repository = "https://github.com/Ravio1i/notion-gcal-sync"
authors = ["Luka Kroeger <luka.kroeger@gmail.com>"]
license = 'GNU General Public License v3.0'
exclude = ["*.json", "*.csv", "**/config.yml"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
notion-client = "^0.7.1"
google-api-python-client = "2.23.0"
google-auth-oauthlib = "0.4.6"
pyyaml = "5.4.1"
pandas = "1.3.3"
click = "^8.0.3"
pendulum = "^2.1.2"
[tool.poetry.dev-dependencies]
pytest = "6.2.4"
pytest-cov = "3.0.0"
flake8 = "4.0.1"
poetry = "^1.1.11"
poetry2setup = "^1.0.0"
pre-commit = "^2.15.0"
python-semantic-release = "^7.19.2"
commitizen = "^2.20.0"
pytest-mock = "^3.6.1"
black = "^21.9b0"
[tool.poetry.scripts]
notion-gcal-sync = "notion_gcal_sync.__main__:main"
[tool.black]
line-length = 128
include = '\.pyi?$'
force-exclude = '''
/(
\.git
| \.idea
| build
| dist
| blib2to3
| tests/assets
)/
'''
[tool.semantic_release]
version_variable = [
"notion_gcal_sync/__init__.py:__version__",
"pyproject.toml:version"]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"