-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (75 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
85 lines (75 loc) · 1.94 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
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.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "worker*"]
[project]
name = "zly"
version = "1.0.0-dev"
description = "Next-gen open-source URL shortener and marketing platform"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "PythonPlumber", email = "pythonplumber@senuka.me" },
]
keywords = ["url-shortener", "fastapi", "analytics", "qr-code", "link-in-bio", "marketing", "self-hosted"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"sqlalchemy[asyncio]>=2.0.36",
"aiosqlite>=0.20.0",
"asyncpg>=0.30.0",
"alembic>=1.14.0",
"redis>=5.2.0",
"arq>=0.26.0",
"pydantic-settings>=2.6.0",
"jinja2>=3.1.4",
"python-multipart>=0.0.18",
"httpx>=0.28.0",
"bcrypt>=4.2.0",
"pyjwt>=2.9.0",
"qrcode[pil]>=8.0",
"email-validator>=2.0.0",
"sentry-sdk>=2.0.0",
"aiosmtplib>=3.1.0",
]
[project.scripts]
zly-cli = "app.cli:main"
[project.urls]
Homepage = "https://senuka.me"
Repository = "https://github.com/pythonplumber/zly"
Issues = "https://github.com/pythonplumber/zly/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.7.0",
"mypy>=1.13.0",
]
geo = [
"geoip2>=5.0.0",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]