forked from tompollard/tableone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 917 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tableone"
version = "0.8.0"
authors = [
{ name="Tom Pollard", email="[email protected]" },
{ name="Alistair Johnson" },
{ name="Jesse Raffa" }
]
license = {file = "LICENSE"}
description = "A small example package"
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 = [
"numpy",
"pandas",
"scipy",
"statsmodels",
"tabulate",
"Jinja2",
"openpyxl",
]
[tool.black]
line-length = 119
[project.urls]
homepage = "https://github.com/tompollard/tableone/"
documentation = "https://tableone.readthedocs.io/"
repository = "https://github.com/tompollard/tableone/"