-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (48 loc) · 1.05 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
[build-system]
requires = [
"setuptools>=61.0", "setuptools_scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "millipds"
dynamic = ["version"]
authors = [
{ name="David Buchanan", email="[email protected]" },
]
description = "A lightweight atproto PDS"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cbrrr >= 1.0.0, < 2",
"atmst >= 0.0.4",
"pyjwt[crypto]",
"cryptography",
"aiohttp",
"aiohttp-middlewares", # cors
"docopt",
"apsw",
"argon2-cffi",
"base58"
]
[project.optional-dependencies]
docs = [ # uhhhhh I'm not currently using these lol
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-jquery",
]
test = [
"requests",
]
[project.urls]
Homepage = "https://github.com/DavidBuchanan314/millipds"
Issues = "https://github.com/DavidBuchanan314/millipds/issues"
[project.scripts]
millipds = "millipds.__main__:main"
[tool.ruff.format]
indent-style = "tab"
[tool.setuptools_scm]