-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.36 KB
/
pyproject.toml
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
#
# Function
# Copyright © 2025 NatML Inc. All Rights Reserved.
#
[project]
name = "fxn"
dynamic = ["version"]
description = "Run prediction functions locally in Python. Register at https://fxn.ai."
readme = "README.md"
dependencies = [
"numpy",
"pillow",
"pydantic>=2.0",
"requests",
"rich",
"typer"
]
requires-python = ">=3.10"
authors = [ { name = "NatML Inc.", email = "[email protected]" } ]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://fxn.ai"
Documentation = "https://docs.fxn.ai"
Source = "https://github.com/fxnai/fxn"
Changelog = "https://github.com/fxnai/fxn/blob/main/Changelog.md"
[project.optional-dependencies]
# None
[project.scripts]
fxn = "fxn.cli.__init__:app"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["fxn", "fxn*"]
namespaces = false
[tool.setuptools.package-data]
"fxn.lib" = ["macos/*/*.dylib", "windows/*/*.dll", "linux/*/*.so"]
[tool.setuptools.dynamic]
version = { attr = "fxn.version.__version__" }