-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (40 loc) · 1.12 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
[tool.poetry]
name = "github-stars-export"
version = "0.1.0"
description = ""
authors = ["Luc Shelton <lucshelton@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
rich-click = "^1.8.3"
rich = "^13.8.1"
requests = "^2.32.3"
notion-client = "^2.2.1"
python-dotenv = "^1.0.1"
[tool.poetry.scripts]
github-stars-export = 'github_stars_export.__main__:cli'
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/foo.py # exclude a file named foo.py in the root of the project
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
[tool.poetry.group.docs.dependencies]
sphinx = "^7.4.4"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pylint = "^3.2.5"
[tool.poetry.group.test.dependencies]
coverage = "^7.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"