-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 1 KB
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 1 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "toolforgeio"
version = "0.0.10"
description = "Library for building tools in the ToolForge Data Science tools ecosystem using Python"
readme = "README.md"
authors = [{ name = "Andy Boothe", email = "andy@toolforge.io" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["toolforge", "toolforge.io"]
# Some day, we should be able to sync requirements.txt to pyproject.toml...
dependencies = [
"requests~=2.32.0",
"openpyxl~=3.1.5",
"pandas~=2.2.3",
"PyYAML~=6.0.2",
"xlrd~=2.0.1",
"chardet~=5.2.0",
# A version of Tomli, the tomllib module, was added to the standard library in Python 3.11 via PEP 680
'tomli; python_version < "3.11"'
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/toolforgeio/toolforge4py"