-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 780 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 780 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lemon-explainer"
version = "0.0.3"
authors = [
{ name="Dennis Collaris", email="d.collaris@me.com" },
]
description = "Explaining the predictions of any machine learning model"
readme = "README.md"
requires-python = ">=3.7"
license = "BSD-2-Clause"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy",
"pandas",
"matplotlib"
]
[project.urls]
"Homepage" = "https://github.com/iamDecode/lemon"