forked from lenskit/lkpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (85 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
90 lines (85 loc) · 1.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lenskit"
authors = [
{name = "Michael Ekstrand", email = "michaelekstrand@boisestate.edu"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">= 3.7"
dynamic = ['version', 'description']
dependencies = [
"pandas >=1.0, ==1.*",
"numpy >= 1.17",
"scipy >= 1.2",
"numba >= 0.51, < 0.55",
"cffi >= 1.12.2",
"psutil >= 5",
"binpickle >= 0.3.2",
"seedbank >= 0.1.0",
"csr >= 0.3.1",
]
[project.urls]
homepage = "https://lenskit.org"
documentation = "https://lkpy.lenskit.org"
source = "https://github.com/lenskit/lkpy"
[project.optional-dependencies]
test = [
"pytest >= 6",
"pytest-doctestplus >= 0.9",
"hypothesis >= 6"
]
dev = [
"flit >= 3",
"conda-lock",
"invoke >=1",
"requests >=2",
"packaging >= 20",
"flake8 >= 3",
"coverage >= 5",
"pytest-cov >= 2.12",
"ipython >= 7",
"docopt >= 0.6",
"tqdm >= 4",
"sphinx-autobuild >= 2021",
]
doc = [
"sphinx >= 3",
"sphinxcontrib-bibtex >= 2.0",
"sphinx_rtd_theme >= 0.5",
"nbsphinx >= 0.8",
]
demo = [
"notebook >= 6",
"nbval >= 0.9",
"matplotlib ~= 3.4",
]
sklearn = ["scikit-learn >= 0.22"]
tf = ["lenskit-tf"]
hpf = ["lenskit-hpf"]
implicit = ["lenskit-implicit"]
[tool.flit.sdist]
exclude = [
".github",
"*.ipynb",
"docs",
"data",
"examples",
"build-tools",
"lkbuild",
"tasks.py",
"tests",
]
[tool.conda-lock]
channels = ['conda-forge']