-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,36 @@ | ||
[project] | ||
dynamic = ["classifiers"] | ||
Check failure on line 2 in pyproject.toml
|
||
|
||
[project.urls] | ||
homepage = "https://tab-err.readthedocs.io/latest/" | ||
repository = "https://github.com/calgo-lab/tab_err" | ||
documentation = "https://tab-err.readthedocs.io/latest/" | ||
"Bug Tracker" = "https://github.com/calgo-lab/tab_err/issues" | ||
|
||
[tool.poetry] | ||
name = "tab_err" | ||
version = "0.1.1" | ||
description = "Fully-controllable error generation for tabular data." | ||
authors = [ | ||
"Philipp Jung <[email protected]>", | ||
"Sebastian Jäger <[email protected]>", | ||
{ name = "Philipp Jung", email = "[email protected]" }, | ||
{ name = "Sebastian Jäger", email = "[email protected]" }, | ||
] | ||
license = "Apache License 2.0" | ||
readme = "README.md" | ||
keywords = ["tabular-data", "data-quality", "error-modelling", "data-errors"] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9,<3.13" | ||
|