-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.7 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
# 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-template"
# You can leave this alone to start. Only worry about it when you need to create
# a package for other users
version = "0.1.0"
requires-python = ">= 3.9"
# 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
# latest minor version of cumulus-library
"cumulus-library >= 1.4.0",
"sqlfluff >= 2.3.4",
]
# You can alter this to discuss your study specifics
description = "SQL generation for cumulus template studies"
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",
]
[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-template"
[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 = ["template/"]