-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "postnormalism"
authors = [
{ name="Zac Miller", email="[email protected]" },
]
maintainers = [
{ name="Zac Miller", email="[email protected]" },
]
description = "Postnormalism is Not an Object Relational Mapper (NORM) it is a lightweight and simple-to-use Python library for managing PostgreSQL database schemas. It provides an easy way to define tables and functions, organize schema items, and create them in a database with a specified load order."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT License"}
keywords = ["python", "postgresql", "schema"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/jzmiller1/postnormalism"
"Bug Tracker" = "https://github.com/jzmiller1/postnormalism/issues"
"Repository" = "https://github.com/jzmiller1/postnormalism.git"
"History" = "https://github.com/jzmiller1/postnormalism/blob/master/HISTORY.md"
[tool.setuptools.dynamic]
version = {file = "postnormalism/VERSION"}