-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.59 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
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fetchbin"
dynamic = ["version"]
description = "Simple sharing for your system's fetch output"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "beucismis", email = "beucismis@tutamail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"uvicorn==0.35.0",
"fastapi==0.120.1",
"pydantic==2.12.5",
"pydantic-settings==2.13.0",
"sqlmodel==0.0.27",
"itsdangerous==2.2.0",
"jinja2==3.1.4",
"ansi2html==1.9.2",
"shortuuid==1.0.13",
"requests==2.32.3",
"slowapi==0.1.9"
]
[project.scripts]
fetchbin = "fetchbin.cli.main:main"
[project.urls]
Source = "https://github.com/beucismis/fetchbin"
Issues = "https://github.com/beucismis/fetchbin/issues"
Documentation = "https://github.com/beucismis/fetchbin#readme"
[tool.hatch.version]
path = "src/fetchbin/__about__.py"
[tool.hatch.envs.default.scripts]
format = "black -l 120 . && djlint . --reformat --format-js --format-css"
cli = "PYTHONPATH=src FETCHBIN_API_URL=http://localhost:8000 python3 -m fetchbin.cli.main {args}"
api = "PYTHONPATH=src FETCHBIN_DATA_DIR=data/ uvicorn src.fetchbin.api.main:app --reload"