-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
42 lines (38 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tableone"
version = "0.9.1"
authors = [
{ name="Tom Pollard", email="tpollard@mit.edu" },
{ name="Alistair Johnson" },
{ name="Jesse Raffa" }
]
license = {file = "LICENSE"}
description = "tableone is a package for creating 'Table 1' summary statistics for a patient population."
readme = "README.md"
requires-python = ">=3.9"
keywords=["Table one", "Table 1", "statistics", "cohort", "clinical research"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Jinja2 >= 3.1.4",
"numpy >= 1.19.1",
"openpyxl >= 3.1.2",
"pandas >= 2.0.3",
"scipy >= 1.10.1",
"statsmodels >= 0.14.1",
"tabulate >= 0.9.0",
]
[tool.black]
line-length = 119
[tool.pyright]
reportMissingImports = true
[project.urls]
homepage = "https://github.com/tompollard/tableone/"
documentation = "https://tableone.readthedocs.io/"
repository = "https://github.com/tompollard/tableone/"