-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.48 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cehrbert_data"
dynamic = ["version"]
authors = [
{ name = "Chao Pang", email = "[email protected]" },
{ name = "Xinzhuo Jiang", email = "[email protected]" },
{ name = "Krishna Kalluri", email = "[email protected]" },
{ name = "Nishanth Parameshwar Pavinkurve", email = "[email protected]" },
{ name = "Karthik Natarajan", email = "[email protected]" }
]
description = "The Spark ETL tools for generating the CEHR-BERT and CEHR-GPT pre-training and finetuning data"
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.10.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"numpy==1.24.3",
"packaging==23.2",
"pandas==2.2.0",
"pyspark==3.1.2"
]
[tool.setuptools_scm]
[project.urls]
Homepage = "https://github.com/knatarajan-lab/cehrbert_data"
[project.optional-dependencies]
dev = [
"pre-commit", "pytest", "pytest-cov", "pytest-subtests", "rootutils", "hypothesis", "black"
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.black]
line_length = 120