-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 867 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ft_utils"
version = "0.1.0"
authors = [
{ name="Alex Turner", email="alexturner@meta.com" },
]
description = "A utility library for Free Threaded Python programming"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/facebookincubator/ft_utils"
Issues = "https://github.com/facebookincubator/ft_utils/issues"
Documentation = "https://github.com/facebookincubator/ft_utils/blob/main/docs/index.md"
[tool.setuptools]
packages = ["ft_utils", "ft_utils.tests"]
[tool.setuptools.package-data]
ft_utils = ["*.pyi", "py.typed", "*.so"]
"ft_utils.tests" = ["*.pyi"]