|
| 1 | +[project] |
| 2 | +name = "tensorflow_gnn" |
| 3 | +description = "A library for building scalable graph neural networks in TensorFlow." |
| 4 | +readme = "README.md" |
| 5 | +keywords = ["tensorflow", "gnn", "graph"] |
| 6 | +dynamic = ["version"] |
| 7 | +license = "Apache-2.0" |
| 8 | +requires-python = ">=3.9, <4" |
| 9 | +dependencies = [ |
| 10 | + "google-vizier>=0.0.13, !=0.1.23, !=0.1.24", # b/394062744 |
| 11 | + "ml-collections>=1.1.0", |
| 12 | + "networkx>=3.6.1", |
| 13 | + "pyarrow>=18.1.0", |
| 14 | + "tensorflow>=2.12.0, <3; platform_machine != 'arm64' or platform_system != 'Darwin'", |
| 15 | + "tensorflow-macos>=2.12.0, <3; platform_machine == 'arm64' and platform_system == 'Darwin'", |
| 16 | + "apache-beam>=2.54", |
| 17 | + "crcmod>=1.7, <2", |
| 18 | +] |
| 19 | +authors = [ |
| 20 | + {name = "Google LLC", email = "tensorflow-gnn@googlegroups.com"}, |
| 21 | +] |
| 22 | +classifiers = [ |
| 23 | + "Development Status :: 5 - Production/Stable", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Intended Audience :: Science/Research", |
| 26 | + "Operating System :: MacOS :: MacOS X", |
| 27 | + "Operating System :: POSIX :: Linux", |
| 28 | + "Operating System :: Microsoft :: Windows", |
| 29 | + "Programming Language :: Python", |
| 30 | + "Programming Language :: Python :: 3", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3 :: Only", |
| 33 | + "Topic :: Scientific/Engineering", |
| 34 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 35 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 36 | + "Topic :: Software Development", |
| 37 | + "Topic :: Software Development :: Libraries", |
| 38 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 39 | +] |
| 40 | + |
| 41 | +[project.urls] |
| 42 | +homepage = "https://github.com/tensorflow/gnn" |
| 43 | +source = "https://github.com/tensorflow/gnn.git" |
| 44 | + |
| 45 | +[dependency-groups] |
| 46 | +test-base = [ |
| 47 | + "mock", |
| 48 | +] |
| 49 | +test-pre-tf216 = [ |
| 50 | + "ai-edge-litert", |
| 51 | + {include-group = "test-base"}, |
| 52 | +] |
| 53 | +test-tf216plus = [ |
| 54 | + "tf-keras", |
| 55 | + {include-group = "test-pre-tf216"}, |
| 56 | +] |
| 57 | +test-nightly = [ |
| 58 | + "tf-nightly", |
| 59 | + "tf-keras-nightly", |
| 60 | + "ai-edge-litert-nightly", |
| 61 | + {include-group = "test-base"}, |
| 62 | +] |
| 63 | + |
| 64 | +[project.scripts] |
| 65 | +tfgnn_convert_ogb_dataset = 'tensorflow_gnn.converters.ogb.convert_ogb_dataset:main' |
| 66 | +tfgnn_sampler = 'tensorflow_gnn.experimental.sampler.beam.sampler:main' |
| 67 | +# copybara:comment_begin(NetworkX utils) |
| 68 | +tfgnn_nx_converter = 'tensorflow_gnn.sampler.nx_converter:main' |
| 69 | +tfgnn_nx_generator = 'tensorflow_gnn.sampler.nx_generator:main' |
| 70 | +# copybara:comment_end |
| 71 | +tfgnn_generate_training_data = 'tensorflow_gnn.tools.generate_training_data:main' |
| 72 | +tfgnn_print_training_data = 'tensorflow_gnn.tools.print_training_data:main' |
| 73 | +tfgnn_sampled_stats = 'tensorflow_gnn.tools.sampled_stats:main' |
| 74 | +tfgnn_validate_graph_schema = 'tensorflow_gnn.tools.validate_graph_schema:main' |
| 75 | + |
| 76 | +[build-system] |
| 77 | +requires = ["setuptools", "numpy"] |
| 78 | +build-backend = "setuptools.build_meta" |
| 79 | + |
| 80 | +[tool.setuptools.dynamic] |
| 81 | +version = {attr = "tensorflow_gnn.version.__version__"} |
| 82 | + |
| 83 | +[tool.setuptools.packages.find] |
| 84 | +exclude = ["examples*", "package*", "testdata*", "build*", "bazel*"] |
| 85 | + |
| 86 | +[tool.setuptools.package-data] |
| 87 | +tensorflow_gnn = ["*.proto"] |
| 88 | + |
0 commit comments