-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.5 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlactive"
dynamic = ["version"]
authors = [
{ name="Dairo Mosquera", email="dairoandres115@outlook.com" },
]
description = "A sleek, powerful and asynchronous ActiveRecord-style wrapper for SQLAlchemy. Bring Django-like queries, automatic timestamps, nested eager loading, and dictionary serialization for SQLAlchemy models."
readme = "README.md"
requires-python = ">=3.10"
keywords=[
"sqlalchemy",
"active record",
"activerecord",
"orm",
"django-like",
"django queries",
"eager load",
"timestamps",
"serialization",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Database",
]
dependencies = [
"sqlalchemy>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/daireto/sqlactive"
Documentation = "https://daireto.github.io/sqlactive/"
Issues = "https://github.com/daireto/sqlactive/issues"
Repository = "https://github.com/daireto/sqlactive"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["sqlactive*"]
exclude = ["docs*", "tests*"]
[tool.setuptools.dynamic]
version = {attr = "sqlactive.__version__"}