-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (34 loc) · 935 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "py-ml-metrics"
version = "0.0.3"
description = "ML-metrics: A library that provides performant and distributed friendly ML metrics implementations."
keywords = []
authors = [
{name = "ML metrics team", email = "ml-metrics-dev@google.com"},
]
dependencies = [
'absl-py',
'cloudpickle',
'immutabledict',
'numpy',
'more-itertools',
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
[project.optional-dependencies]
courier = ['dm-launchpad']
signals = ['pillow']
full = ['dm-launchpad', 'pillow']
[project.urls]
homepage = "https://github.com/google/ml-metrics"
[tool.setuptools.packages.find]
include = ["ml_metrics*"]