-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
80 lines (71 loc) · 2.17 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
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "redflag"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [{ name="Matt Hall", email="[email protected]" },]
description = "Safety net for machine learning pipelines."
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["machine learning", "data science", "quality assurance"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy<2.0", # NumPy 2 will likely break some things.
"scipy!=1.10.0", # Bug in stats.powerlaw.
"scikit-learn",
]
[project.optional-dependencies]
dev = [
"setuptools",
"build",
"mypy",
"types-setuptools",
"pytest",
"coverage[toml]",
"pytest-cov",
"sphinx",
"sphinxcontrib-apidoc",
"sphinx_copybutton",
"furo",
"myst_nb",
"jupyter",
"pandas",
"seaborn",
]
[project.urls]
"documentation" = "https://scienxlab.org/redflag"
"repository" = "https://github.com/scienxlab/redflag"
[tool.setuptools_scm]
# Empty section, required for dynamic versioning.
[tool.setuptools.packages.find]
where = ["src"]
[tool.mypy]
warn_return_any = true
ignore_missing_imports = true
exclude = ['docs', 'tests']
[tool.pytest.ini_options]
# pytest configuration: http://doc.pytest.org/en/latest/customize.html
addopts = "--doctest-modules --doctest-continue-on-failure --ignore=docs --cov=redflag"
filterwarnings = [
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
"ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning",
]
[tool.coverage.run]
# coverage configuration: https://coverage.readthedocs.io/
omit = [
"src/redflag/__init__.py",
]