-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (26 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
34 lines (26 loc) · 892 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
33
[project]
name = "tstring-util"
description = "Utilities for tstring"
license = {text = "MIT" }
version = "2.1"
dependencies = []
requires-python= ">= 3.14"
readme = "README.md"
authors = [
{name = "Gerard Weatherby"},
{email = "gerardw@alum.mit.edu"}
]
[project.urls]
Homepage = "https://github.com/Gerardwx/tstring-util"
Repository = "https://github.com/Gerardwx/tstring-util"
Issues = "https://github.com/Gerardwx/tstring-util/issues"
Changelog = "https://github.com/Gerardwx/tstring-util/releases"
[tool.setuptools]
package-dir = {"" = "src" } # Tells setuptools that the root package is in the "src" directory
[tool.setuptools.packages.find]
where = ["src"] # Specify the "src" directory to look for packages
[project.optional-dependencies]
test = ['pytest']
[build-system]
requires = ["setuptools<=69.5.1", "wheel"]
build-backend = "setuptools.build_meta"