-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools"]
build-backend = "build_backend"
backend-path = ["."]
[project]
name = "apple-fm-sdk"
version = "0.1.1"
description = "Python bindings for Apple's Foundation Models Swift framework"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{name = "Apple Inc."},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["machine-learning", "artificial-intelligence", "apple", "foundation-models"]
dependencies = [
"build",
"setuptools>=75.3.2",
]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"ruff>=0.14.5",
"ctypesgen>=1.1.1",
"psutil>=7.2.2",
"twine>=6.2.0",
]
docs = [
"sphinx>=7.0.0",
"sphinx-book-theme>=1.0.0",
"sphinx-autodoc-typehints>=1.25.0",
"sphinx-copybutton>=0.5.2",
"myst-parser>=2.0.0",
]
[project.urls]
"Homepage" = "https://github.com/apple/python-apple-fm-sdk"
"Bug Reports" = "https://github.com/apple/python-apple-fm-sdk/issues"
"Source" = "https://github.com/apple/python-apple-fm-sdk"
[tool.setuptools]
packages = ["apple_fm_sdk"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
apple_fm_sdk = ["lib/*.a", "lib/*.dylib"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
# Show warnings in test output
filterwarnings = [
"default",
"default::UserWarning",
]