-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.15 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ardilla"
version = "0.4.0-beta"
authors = [
{ name="ChrisDewa", email="[email protected]" },
]
description = "Ardilla ORM. Easy to use, fast to implement, with sync and async flavors"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
dependencies = [
"pydantic==1.10.7",
]
[project.optional-dependencies]
async = ["aiosqlite==0.19.0",]
examples = [
"fastapi==0.95.1",
"uvicorn==0.22.0"
]
dev = [
"pytest==7.3.1", # testing
"pytest-asyncio==0.21.0", # testing async
"black==23.3.0", # formating
]
docs = [
"mkdocs==1.4.3",
"jinja2<3.1.0",
"mkdocstrings[python]==0.21.2",
]
[project.urls]
"Homepage" = "https://github.com/chrisdewa/ardilla"
"Bug Tracker" = "https://github.com/chrisdewa/ardilla/issues"