-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (42 loc) · 1.41 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
[project]
name = "reddit-user-to-sqlite"
version = "0.4.2"
authors = [{ name = "David Brownman", email = "[email protected]" }]
description = "Create a SQLite database containing data pulled from Reddit about a single user."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
keywords = ["sqlite", "reddit", "dogsheep"]
dependencies = [
"sqlite-utils==3.32.1",
"click==8.1.3",
"requests==2.29.0",
"tqdm==4.65.0",
]
[project.optional-dependencies]
test = ["pytest==7.3.1", "responses==0.23.1"]
release = ["twine==4.0.2", "build==0.10.0"]
ci = ["black==23.3.0", "pyright==1.1.318", "ruff==0.0.277"]
[project.urls]
"Homepage" = "https://github.com/xavdid/reddit-user-to-sqlite"
"Bug Tracker" = "https://github.com/xavdid/reddit-user-to-sqlite/issues"
"Author" = "https://xavd.id"
"Changelog" = "https://github.com/xavdid/reddit-user-to-sqlite/blob/main/CHANGELOG.md"
[project.scripts]
reddit-user-to-sqlite = "reddit_user_to_sqlite.cli:cli"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
# needed so the LSP performs typechecking
[tool.pyright]
[tool.ruff]
select = ["E", "F", "I001"] # defaults & isort
ignore = ["E501"]