-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (39 loc) · 1.03 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
[project]
name = "ebm2onnx"
version = "3.3.0"
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 = "[email protected]"},
{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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
dependencies = [
'onnx~=1.8',
'interpret-core[required,ebm]~=0.3',
]
[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