-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (48 loc) · 1.48 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
# Project metadata. Available keys are documented at:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
name = "pathwaysutils"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [{name = "Pathways-on-Cloud Utilities Developers", email="[email protected]"}]
classifiers = [ # List of https://pypi.org/classifiers/
"License :: OSI Approved :: Apache Software License",
]
keywords = []
dependencies = [
"absl-py",
"fastapi",
"google-cloud-logging",
"jax>=0.4.26",
"orbax-checkpoint",
"uvicorn",
]
# `version` is automatically set by flit to use `my_project.__version__`
# `description` is automatically set by flit to use `my_project.__doc__`
dynamic = ["version", "description"]
[project.urls]
homepage = "https://github.com/AI-Hypercomputer/pathways-utils"
repository = "https://github.com/AI-Hypercomputer/pathways-utils"
changelog = "https://github.com/AI-Hypercomputer/pathways-utils/blob/main/CHANGELOG.md"
# documentation = ""
[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
# Installed through `pip install -e .[dev]`
dev = [
"pylint>=2.6.0",
"pyink",
]
[tool.pyink]
# Formatting configuration to follow Google style-guide
line-length = 80
unstable = true
pyink-indentation = 2
pyink-use-majority-quotes = true
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
exclude = [
"**/test",
]