Skip to content

Commit

Permalink
Merge pull request #224 from mlcommons/comments
Browse files Browse the repository at this point in the history
Add comments to pyproject.toml
  • Loading branch information
ccl-core authored Sep 25, 2023
2 parents 7ffc80b + 1a002d9 commit fb123c8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions python/mlcroissant/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[project]
# Project metadata. Available keys are documented at:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
name = "mlcroissant"
description = "MLCommons datasets format."
version = "0.0.1"
Expand All @@ -12,6 +14,9 @@ authors = [
{ name = "Pierre Ruyssen" },
{ name = "Prabhant Singh" },
]

# pip dependencies of the project
# Installed locally with `pip install -e .`
dependencies = [
"absl-py",
"etils[epath]",
Expand All @@ -25,6 +30,8 @@ dependencies = [
readme = "README.md"

[project.optional-dependencies]
# Development deps (linting, formatting,...)
# Installed through `pip install -e .[dev]`
dev = [
"black",
"datasets",
Expand All @@ -41,6 +48,7 @@ git = ["GitPython"]
image = ["Pillow"]
parquet = ["pyarrow"]

# Formatting configurations.
[tool.black]
line-length = 88

Expand Down

0 comments on commit fb123c8

Please sign in to comment.