|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name="labkey" |
| 7 | +version = "4.1.0" |
| 8 | +description = "Python client API for LabKey Server" |
| 9 | +dependencies = ["requests>=2.32.5"] |
| 10 | +readme = "README.md" |
| 11 | +requires-python = ">=3.11" |
| 12 | +license = "Apache-2.0" |
| 13 | +license-files = ["LICENSE.txt"] |
| 14 | +keywords = ["labkey"] |
| 15 | +maintainers = [{ name = "Alan Vezina", email="alanv@labkey.com" }] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 4 - Beta", |
| 18 | + "Environment :: Console", |
| 19 | + "Intended Audience :: Science/Research", |
| 20 | + "Intended Audience :: System Administrators", |
| 21 | + "Operating System :: MacOS", |
| 22 | + "Operating System :: Microsoft", |
| 23 | + "Operating System :: POSIX", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Programming Language :: Python :: 3.14", |
| 28 | + "Topic :: Scientific/Engineering", |
| 29 | +] |
| 30 | + |
| 31 | +[tool.hatch.build.targets.sdist] |
| 32 | +only-include = ["labkey"] |
| 33 | + |
| 34 | +[project.optional-dependencies] |
| 35 | +test = ["pytest>=9.0.2", "mock>=5.2.0", "pytest-cov>=7.0.0"] |
| 36 | +dev = ["black>=26.1.0", "pytest>=9.0.2", "mock>=5.2.0", "pytest-cov>=7.0.0", "hatch>=1.16.4"] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://github.com/LabKey/labkey-api-python" |
| 40 | + |
1 | 41 | [tool.black] |
2 | 42 | line-length = 100 |
0 commit comments