-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.28 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
[project]
requires-python = ">=3.12"
description = "A sensible orm for PostgreSQL or SQLite"
authors = [
{ name = "Jay Marcyes", email = "jay@marcyes.com" }
]
keywords = [
"async",
"postgresql",
"postgres",
"database",
"db",
"sqlite",
"orm",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Environment :: Other Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Programming Language :: Python :: 3"
]
dependencies = [
"dsnparse~=0.4.0",
"datatypes~=0.33.0",
]
name = "prom"
dynamic = [
"version"
]
readme = "README.md"
license = "MIT"
license-files = [
"LICENSE.txt"
]
[project.urls]
Homepage = "https://github.com/Jaymon/prom"
Repository = "https://github.com/Jaymon/prom"
[project.optional-dependencies]
tests = [
"testdata"
]
postgres = [
"psycopg" # psycopg[binary]
]
[build-system]
requires = [
"setuptools>=62.3.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"tests*",
"example*",
"*_test*",
"docs*"
]
include = [
"prom*"
]
[tool.setuptools.dynamic]
version = { attr = "prom.__version__" }