-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mercury-monitoring"
license = {file = "LICENSE.txt"}
version = "0.0.2"
authors = [
{ name="Mercury Team", email="[email protected]" },
]
description = "Mercury's monitoring is a library to perform monitoring testing on models and/or datasets.."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'matplotlib>=3.0.2',
'pandas>=0.24.2',
'scikit-learn>=0.23.1',
'seaborn',
'mercury-dataschema',
'scipy',
'tensorflow>=1.15',
'matplotlib>=3.0.2'
]
[project.optional-dependencies]
dev = [
'pytest',
'flake8'
]
doc = [
'mkdocs',
'mkdocstrings[python]',
'mkdocs-material',
'mkdocs-minify-plugin==0.5.0',
'mkdocs-exclude',
'nbconvert',
]
[tool.setuptools.packages.find]
include = ["mercury*"]
exclude = ["docs*", "tests*", "tutorials"]
[project.urls]
"Homepage" = "https://github.com/BBVA/mercury-monitoring"
"Bug Tracker" = "https://github.com/BBVA/mercury-monitoring/issues"