-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sweetiepy"
version = "2.0.0"
description = "Python library for accessing Loop/Nightscout MongoDB diabetes data"
authors = [{name = "Michelle Weirathmueller", email = "info@waveformanalytics.com"}]
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"pymongo>=4.0.0",
"python-dotenv>=1.0.0",
"pandas>=2.0.0",
"pyarrow>=14.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/sweetiepy"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]