-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 773 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dl2-reports"
version = "0.2.12"
authors = [
{ name="kameronbrooks", email="kameron@creation-wasteland.com" },
]
description = "A Python API for generating Datalys2 reports"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=1.0.0",
]
[project.urls]
"Homepage" = "https://github.com/kameronbrooks/datalys2-reporting-python-api"
"Bug Tracker" = "https://github.com/kameronbrooks/datalys2-reporting-python-api/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["dl2_reports*"]