-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 875 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 875 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
32
33
34
35
36
37
[project]
name = "cdt"
version = "0.1.0"
description = "A python implementation of the Cramer decision tree"
readme = "README.md"
requires-python = ">=3.13"
authors = [{name = "Grace Patlewicz", email = "grace@comptoxscience.com"}]
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
]
dependencies = [
"openpyxl>=3.1.5",
"pandas>=3.0.3",
"rdkit>=2026.3.2",
]
[project.optional-dependencies]
dev = [
"marimo[recommended]>=0.23.7",
"matplotlib>=3.10.9",
"seaborn>=0.13.2",
"scikit-learn>=1.8.0",
]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["notebooks", "data*", "references"]
[tool.setuptools.package-data]
"cdt.data" = ["data/*"]
[tool.setuptools]
include-package-data = true