-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.13 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
43
44
45
46
47
48
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=77",
"setuptools-scm[toml]>=9",
]
[project]
name = "lob-hlpr"
description = "Simple python based helpers for lobaro tools."
readme = "README.md"
license-files = [ "LICENSE" ]
authors = [
{ name = "Kevin Weiss", email = "weiss.kevin604@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [ "version" ]
dependencies = [
#
]
optional-dependencies.testing = [
"pytest~=9.0.2",
"pytest-cov~=7.0.0",
]
[tool.setuptools]
include-package-data = true
package-data.lob_hlpr = [
"py.typed",
]
packages.find.where = [ "src" ]
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[tool.pyproject-fmt]
max_supported_python = "3.13"