-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0",]
build-backend = "setuptools.build_meta"
[project]
name = "FireFrame"
version = "0.0.0-alpha.10"
authors = [
{ name="Zachary Spar", email="zachspar@gmail.com" },
]
description = "A firebase python web framework with ORM support."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"click==8.1.7",
"fastapi==0.104.1",
"fireo==2.2.1",
"pydantic==2.5.2",
]
[project.optional-dependencies]
dev = [
"black==23.11.0",
"build==1.0.3",
"httpx==0.25.2",
"pytest==7.4.3",
"pytest-xdist==3.5.0",
"tox==4.11.4",
"twine==4.0.2",
"uvicorn==0.24.0.post1",
]
test = [
"httpx==0.25.2",
"pytest==7.4.3",
"pytest-xdist==3.5.0",
]
[project.scripts]
fireframe = "fireframe.cli:cli"
[project.urls]
"Homepage" = "https://github.com/zachspar/fireframe"
"Bug Tracker" = "https://github.com/zachspar/fireframe/issues"