-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.31 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lenskit-tf"
authors = [
{ name = "Michael Ekstrand", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
readme = "README.md"
license = { file="LICENSE.md" }
requires-python = ">= 3.8"
dependencies = [
"lenskit ==0.14.*",
"tensorflow >=2.6,==2.*"
]
dynamic = ["description", "version"]
[project.urls]
homepage = "https://lkpy.lenskit.org/projects/tf"
GitHub = "https://github.com/lenskit/lenskit-tf"
[project.optional-dependencies]
test = [
"pytest >= 6",
"pytest-doctestplus >= 0.9",
]
dev = [
"lenskit-build-helpers >=0.1",
"flit >= 3.2",
"flake8 >= 3",
"coverage >= 5",
"pytest-cov >= 2.12",
]
cpu = [
"tensorflow-cpu"
]
[tool.flit.module]
name = "lenskit_tf"
[tool.flit.sdist]
exclude = [
".github",
"*.ipynb",
"docs",
"data",
"examples",
"lkbuild",
"tests",
]
[tool.conda-lock]
channels = [
"conda-forge",
"lenskit",
]