-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
86 lines (79 loc) · 1.51 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
86
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "freenit"
dynamic = ["version"]
description = "REST API framework based on FastAPI"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"fastapi",
"passlib",
"pydantic[email]",
"pyjwt",
]
authors = [
{name = "Goran Mekić", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Environment :: Web Environment",
"Programming Language :: Python"
]
[project.optional-dependencies]
beanie = ["beanie"]
dev = [
"aiosqlite",
"black",
"isort",
"uvicorn",
]
ldap = ["bonsai"]
ormar = [
"alembic",
"ormar",
]
test = [
"aiosqlite",
"bandit",
"black",
"httpx",
"isort",
"pytest-asyncio",
"pytest-factoryboy",
"requests",
]
all = [
"beanie",
"aiosqlite",
"black",
"isort",
"uvicorn",
"bonsai",
"alembic",
"ormar",
"aiosqlite",
"bandit",
"black",
"httpx",
"isort",
"pytest-asyncio",
"pytest-factoryboy",
"requests",
]
[project.urls]
Homepage = "https://freenit.org"
Repository = "https://github.com/freenit-framework/backend"
[project.scripts]
freenit = "freenit.cli:main"
[tool.hatch.version]
path = "freenit/__init__.py"
[tool.hatch.build.targets.wheel]
only-include = ["freenit", "bin"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
"bin" = "freenit/bin"