-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
76 lines (68 loc) · 2.19 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
[build-system]
requires = ["setuptools>64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dabl"
description = "Data Analysis Baseline Library"
keywords = [
"data analysis",
"visualization",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
]
license = { "file" = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Andreas Mueller", email = "[email protected]" },
]
maintainers = [
{ name = "Andreas Mueller", email = "[email protected]" },
{ name = "Brian Kroth", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"scikit-learn>=1.1",
# Workaround (currently) undeclared numpy 2.x incompatibility with older
# scikit-learn versions.
# See Also: https://github.com/scikit-learn/scikit-learn/issues/29630
"numpy<2.0; python_version<'3.9'",
"scikit-learn<1.4; python_version<'3.9'",
"scikit-learn>=1.3; python_version>='3.9'",
"pandas",
"matplotlib < 3.8;python_version<'3.9'",
"matplotlib >= 3.8;python_version>='3.9'",
"seaborn",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "dabl.__version__"}
[project.urls]
Documentation = "https://dabl.github.io/"
Repository = "https://github.com/dabl/dabl"
Issues = "https://github.com/dabl/dabl/issues"
# Tell setuptools where to find the package.
[tool.setuptools.package-dir]
dabl = "dabl"
[tool.setuptools.packages.find]
include = ["dabl", "dabl.*"]
exclude = ["*.tests", "*.tests.*"]
[tool.setuptools.package-data]
dabl = [
"datasets/titanic.csv",
"datasets/ames_housing.pkl.bz2",
"datasets/adult.csv.gz",
]