-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (61 loc) · 1.71 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sklearn-pytorch-engine"
version = "0.1.0dev0"
description = "Computational Engine for scikit-learn based on pytorch"
readme = "README.md"
requires-python = ">=3.8"
license = { file="LICENSE.txt" }
maintainers = [
{ name="Olivier Grisel", email="olivier.grisel@ensta.org" },
{ name="Franck Charras", email="franck.charras@inria.fr" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"scikit-learn",
"array_api_compat",
"torch"
]
[project.urls]
"Homepage" = "https://github.com/soda-inria/sklearn-pytorch-engine"
[project.entry-points.sklearn_engines]
kmeans = "sklearn_pytorch_engine.kmeans.engine:KMeansEngine"
[tool.black]
line-length = 88
target_version = ['py38', 'py39', 'py310']
preview = true
# Exclude irrelevant directories for formatting
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.vscode
| \.pytest_cache
| \.idea
| build
| dist
)/
'''
[tool.isort]
profile = "black"
# TODO: move sections from setup.cfg to pyproject.toml when applicable