-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (74 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "sharelink"
version = "0.0.1"
description = "Share Link - 셰어 링크: Share your thoughts, links, ideas, notes. If you ever wanted Shaarli in python, that's it ^_*"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "폭스마스크", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: WTFPL",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Communications",
"Topic :: Database",
]
dependencies = [
"bcrypt == 4.2.0",
"fastapi == 0.115.4",
"fastapi-csrf-protect == 0.3.6",
"pydantic-settings == 2.6.1",
"sqlmodel == 0.0.22",
"newspaper3k == 0.2.8",
"pypandoc == 1.14",
"pytz == 2024.2",
"lxml[html_clean] == 5.3.0",
"python-slugify == 8.0.4",
"python-multipart == 0.0.17",
]
[project.urls]
Homepage = "https://github.com/foxmask/sharelink/"
Documentation = "https://github.com/foxmask/sharelink/blob/main/README.md"
Source = "https://github.com/foxmask/sharelink/"
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = [
"F", # pyflakes
"DJ", # flake8 django
"E", # pycodestyle
"I", # isort
"ANN", # flake8 type annotations
"RUF", # ruff-specific rules
]
[tool.ruff.lint.isort]
combine-as-imports = true
[project.optional-dependencies]
test = [
"build",
"wheel",
"coverage",
"pipdeptree",
"twine",
"bandit",
"pip-audit",
]
lint = ["ruff == 0.7.3"]
[tool.setuptools.packages.find]
include = ["sharelink*"]
namespaces = false
[tool.setuptools]
include-package-data = false