-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
44 lines (40 loc) · 1.18 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
[project]
name = "jax-codex"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [{name = "CoDeX authors"}]
maintainers = [{name = "Johannes Ballé", email = "jballe@google.com"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
keywords = [
"compression", "data-compression", "machine-learning", "deep-learning",
]
dependencies = [
"jax ~=0.4,>=0.4.25",
]
dynamic = ["version", "description"]
[project.urls]
homepage = "https://github.com/google/codex"
repository = "https://github.com/google/codex"
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "codex"
[tool.flit.sdist]
exclude = [
"**/*.bazel",
"**/*.cc",
"**/*.h",
]