-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 916 Bytes
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
[project]
name = "ebm2onnx"
version = "3.3.1"
description = "EBM model serialization to ONNX"
readme = "README.rst"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
keywords = ["ebm2onnx", "interpretml", "machine-learning", "onnx"]
authors = [
{email = "romain.picard@softathome.com"},
{name = "Romain Picard"}
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Natural Language :: English',
'Programming Language :: Python :: 3',
]
dependencies = [
'onnx~=1.8',
'interpret-core~=0.6',
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
repository = "https://github.com/interpretml/ebm2onnx.git"
[options]
packages = ["ebm2onnx"]
[tool.setuptools.packages.find]
where = ["./"]
include = ["ebm2onnx"]
namespaces = false