-
Notifications
You must be signed in to change notification settings - Fork 581
/
pyproject.toml
76 lines (70 loc) · 2.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[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.9,<3.12"
license = {file = "LICENSE"}
authors = [
{ name="TensorFlow Federated Team", email="[email protected]" },
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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>=1.0,==1.*',
'attrs~=23.1',
'cachetools~=5.3',
'dm-tree==0.1.8',
'dp-accounting==0.4.3',
'google-vizier==0.1.11',
'grpcio~=1.46',
'jaxlib==0.4.14',
'jax==0.4.14',
'ml_dtypes>=0.2.0,==0.2.*',
'numpy~=1.25',
'portpicker~=1.6',
'scipy~=1.9.3',
'tensorflow-model-optimization==0.7.5',
'tensorflow-privacy==0.9.0',
'tensorflow>=2.14.0,==2.14.*',
'tqdm~=4.64',
'typing-extensions>=4.5.0,==4.5.*',
# TODO: b/315515548 - Required because current dependencies are pulling in
# later versions which are causing opaque failures.
'googleapis-common-protos==1.61.0',
]
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"]