-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 1.07 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
[project]
name = "ndbfunctions"
version = "0.1.0"
description = "Minting process for the Neotoma Paleoecology Database's DOIs using the DataCite API and the Neotoma API."
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
license-files = ["LICENSE.md"]
authors = [{ name = "Simon Goring", email = "goring@wisc.edu" }]
maintainers = [{ name = "Simon Goring", email = "goring@wisc.edu" }]
requires-python = ">=3.12"
keywords = ["Postgresql", "metadata", "Open Science"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Hatch",
"Framework :: Pytest",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Scientific/Engineering",
]
dependencies = ["psycopg[binary]>=3.3.2", "python-dotenv>=1.2.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ndbfunctions"]