forked from mleming/general_class_balancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.3 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "general_class_balancer"
description = "Finds a subset of your dataset with balanced confounding factors (also known as 'data matching')."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "mleming"}]
maintainers = [{ name = "Hao-Ting Wang", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"setuptools",
"numpy",
"scipy",
"pandas",
"matplotlib",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
"general_class_balancer[test]",
"pandas-stubs",
]
test = ["pytest", "pytest-cov"]
# Aliases
tests = ["general_class_balancer[test]"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "general_class_balancer/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["general_class_balancer"]
exclude = [".github", ]
[tool.black]
target-version = ["py310"]
exclude = "general_class_balancer/_version.py"
line-length = 79