-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 924 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 924 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DataWeaver"
version = "1.0.7"
authors = [{name = "RICHARD Quentin", email = "richard.quentin88@gmail.com"}]
description = "DataWeaver is a Python library for mapping data and transform object to an other. It offers flexible field mapping through a simple configuration object, enabling easy data integration and transformation for analysis and processing."
readme = "README.md"
license = {text = "MIT License"} # Update the license as appropriate
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiofiles>=0.7.0",
"PyYAML>=5.4",
# Include any other dependencies here
]
[project.urls]
homepage = "https://github.com/RICHARD-Quentin/DataWeaver"
[tool.mypy]
mypy_path = ["src"]