-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name="labkey"
version = "4.2.0"
description = "Python client API for LabKey Server"
dependencies = ["requests>=2.32.5"]
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE.txt"]
keywords = ["labkey"]
maintainers = [{ name = "Alan Vezina", email="alanv@labkey.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
[tool.hatch.build.targets.sdist]
only-include = ["labkey"]
[project.optional-dependencies]
test = ["pytest>=9.0.2", "mock>=5.2.0", "pytest-cov>=7.0.0"]
dev = ["black>=26.1.0", "pytest>=9.0.2", "mock>=5.2.0", "pytest-cov>=7.0.0", "hatch>=1.16.4"]
[project.urls]
Homepage = "https://github.com/LabKey/labkey-api-python"
[tool.black]
line-length = 100