Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions jax_ml_stack/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"""jax_ml_stack metapackage."""
__version__ = "0.0.1" # keep in sync with pyproject.toml
51 changes: 51 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
[project]
name = "jax_ml_stack"
version = "0.0.1" # keep in sync with jax_ml_stack/__init__.py
description = ""
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "jax_ml_stack authors", email="jax_ml_stack@google.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
]
keywords = []

# pip dependencies of the project
dependencies = [
"jax",
]

[project.urls]
homepage = "https://github.com/jax-ml/jax_ml_stack"
repository = "https://github.com/jax-ml/jax_ml_stack"
# Other: `documentation`, `changelog`

[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
# Installed through `pip install .[dev]`
dev = [
"pytest",
"pytest-xdist",
"pylint>=2.6.0",
"pyink",
]

[tool.pyink]
# Formatting configuration to follow Google style-guide
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true

[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]

[tool.setuptools]
packages = ["jax_ml_stack"]
include-package-data = false