-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
81 lines (74 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "visu3d"
description = "3d geometry made easy."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [{name = "Visu3d team", email="visu3d@google.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
# Note: Python and license automatically added by some tools
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"3d",
"visu3d",
"visualization",
"neural rendering",
"nerf",
]
dependencies = [
"dataclass_array",
"einops",
# If modifying this, also modify `pytest_and_autopublish.yml`
"etils[edc,enp,epath,epy,etree]",
"numpy",
"typing_extensions",
]
# This is set automatically by flit using `etils.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/google-research/visu3d"
repository = "https://github.com/google-research/visu3d"
documentation = "https://visu3d.readthedocs.io"
changelog = "https://github.com/google-research/visu3d/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest>=3.4",
"pytest-xdist",
# Development deps (linting, formating,...)
"pylint>=2.6.0",
"pyink",
# Lazy deps
"jax[cpu]",
"jupyter",
"tf-nightly",
"tensorflow_datasets",
"torch",
"plotly",
"scipy",
]
docs = [
"sphinx-apitree[ext]",
"visu3d[dev]", # Install lazy deps
"scipy>=1.10",
]
[tool.pyink]
# Formatting configuration to follow Google style-guide
line-length = 80
preview = 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 = [
# Do not release tests files on PyPI
"**/*_test.py",
]