-
Notifications
You must be signed in to change notification settings - Fork 606
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 2.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tensorflow_federated"
description = "An open-source framework for machine learning and other computations on decentralized data."
readme = "README.md"
requires-python = ">=3.12,<4"
license = {file = "LICENSE"}
authors = [
{ name="TensorFlow Federated Team", email="no-reply@google.com" },
]
keywords = ["tensorflow", "federated", "machine", "learning"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'absl-py>=2.0,<3',
'attrs~=23.1',
'cachetools~=5.3',
'dm-tree==0.1.9',
'dp-accounting==0.6.0',
'grpcio~=1.74',
'ml_dtypes>=0.5.0',
'numpy~=2.0',
'portpicker~=1.6',
'scipy~=1.16',
'tensorflow>=2.21.0,==2.21.*',
'tqdm~=4.64',
'typing-extensions>=4.5.0,==4.5.*',
]
dynamic = ["version"]
[project.urls]
"Issues" = "https://github.com/google-parfait/tensorflow-federated/issues"
"Releases" = "https://github.com/google-parfait/tensorflow-federated/releases"
"Source" = "https://github.com/google-parfait/tensorflow-federated"
"Documentation" = "https://www.tensorflow.org/federated"
[tool.distutils.bdist_wheel]
# Should match the expected GLIBC version defined in `build_python_package.sh`.
plat-name = "manylinux_2_31_x86_64"
[tool.setuptools.dynamic]
version = {attr = "tensorflow_federated.version.__version__"}
[tool.setuptools.packages.find]
include = ["tensorflow_federated*"]
[tool.setuptools.package-data]
"tensorflow_federated.data" = ["worker_binary"]