-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 765 Bytes
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
[project]
name = "sqlutilpy"
dynamic = ["version"]
description = "Database query code returning numpy arrays"
authors = [
{name = "Sergey E. Koposov", email = "skoposov@ed.ac.uk"},
]
dependencies = [
"numpy",
"psycopg[binary]",
"numpydoc",
"numpy\n"
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "BSD"}
keywords = ["numpy postgresql query sql sqlite array"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Topic :: Utilities",
]
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project.urls]
Homepage = "https://github.com/segasai/sqlutilpy"