-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "physionet"
version = "0.1.6"
authors = [
{ name="Tom Pollard", email="tpollard@mit.edu" },
]
license = {file = "LICENSE"}
description = "A collection of tools for working with the PhysioNet repository."
readme = "README.md"
requires-python = ">=3.9"
keywords=["physionet", "mimic", "medical", "dataset"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"openpyxl",
"requests",
"tqdm",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"requests-mock>=1.9.0",
]
build = [
"build>=0.10.0",
"twine>=4.0.0",
]
[tool.black]
line-length = 119
[tool.pyright]
reportMissingImports = true
[project.scripts]
physionet = "physionet.cli:main"
[project.urls]
homepage = "https://github.com/MIT-LCP/physionet"
repository = "https://github.com/MIT-LCP/physionet"
[tool.hatch.build.targets.sdist]
exclude = [
"venv/",
"env/",
".venv/",
"*.egg-info/",
"dist/",
"build/",
".pytest_cache/",
".git/",
".github/",
"__pycache__/",
"*.pyc",
".DS_Store",
]
[tool.hatch.build.targets.wheel]
packages = ["physionet"]