-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (87 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
92 lines (87 loc) · 1.97 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "diff-binom-confint"
dynamic = ["version"]
description = "Computation of confidence intervals for binomial proportions and for difference of binomial proportions."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
authors = [
{ name = "DeepPSP", email = "wenh06@gmail.com" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"deprecate-kwargs",
"Deprecated",
"Jinja2",
"numpy",
"openpyxl",
"pandas",
"scipy",
"tabulate",
]
[project.optional-dependencies]
acc = [
"numba",
]
docs = [
"sphinx",
"nbsphinx",
"sphinx-theme",
"pydata-sphinx-theme",
"sphinx-rtd-theme",
"sphinx-book-theme",
"sphinx-autobuild",
"sphinx-markdown-tables",
"sphinx-copybutton",
"sphinx-multiversion",
"sphinx-design",
"sphinxcontrib-napoleon",
"sphinx-emoji-favicon",
"sphinxemoji",
"sphinxcontrib-bibtex",
"sphinxcontrib-proof",
"numpydoc",
]
dev = [
"numba",
"pandas",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"tqdm",
"rpy2",
]
test = [
"pandas",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"tqdm",
"rpy2",
]
[project.urls]
Homepage = "https://github.com/DeepPSP/DBCI"
[tool.hatch.version]
path = "diff_binom_confint/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/diff_binom_confint",
]