-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.88 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
# This is our stock pyproject.toml, which we use for installing dependencies and
# packaging. You don't have to touch this if you don't want to! But if you're
# making a distributable, or need extra python dependencies, this is a good
# place to put that info.
[project]
# Change this to reference the name of your study
name = "cumulus-library-suicidality-los"
# You can leave this alone to start. Only worry about it when you need to create
# a package for other users
requires-python = ">= 3.11"
# If you need python libraries, add them here
dependencies = [
# we'll try to keep this template up to date, but it's recommended to use the
# minor version of cumulus-library
"cumulus-library >= 3, < 4",
"sqlfluff > 3"
]
# You can alter this to discuss your study specifics
description = "Quantify the increase in pediatric patients presenting to the emergency department with suicidality before and during the COVID-19 pandemic, and the subsequent impact on emergency department length of stay and boarding"
readme = "README.md"
license = { text="Apache License 2.0" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
Home = "https://smarthealthit.org/cumulus-a-universal-sidecar-for-a-smart-learning-healthcare-system/"
Documentation = "https://docs.smarthealthit.org/cumulus/"
# Change this source to reference your github URL
Source = "https://github.com/smart-on-fhir/cumulus-library-suicidality-los"
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project.optional-dependencies]
dev = [
"black",
"pylint",
]
[tool.flit.sdist]
# change this to the name of the study folder inside of the module directory
include = ["suicide_los/"]