-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
74 lines (65 loc) · 1.56 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "juxai-s2"
description = "JUX is a jax-accelerated engine for Lux-2022."
requires-python = ">=3.8, <3.12"
license = { file = "LICENSE" }
readme = "README.md"
authors = [
{ name = "Qimai Li", email = "[email protected]" },
{ name = "Yuhao Jiang", email = "[email protected]" },
]
keywords = ["JAX", "LuxAI-S2"]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"luxai-s2==3.0.0",
"jax[cuda11_cudnn82]==0.4.7",
"chex",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/RoboEden/jux"
"Bug Tracker" = "https://github.com/RoboEden/jux/issues"
# TODO: add homepage url
# TODO: add documentation url
[project.optional-dependencies]
torch = ["torch"]
dev = [
"toml",
"pre-commit",
"pytype",
"tox",
"tox-conda",
"pytest",
"pytest-cov",
"isort",
"autoflake",
"yapf",
"bump2version",
"rich",
"pandas",
"ipywidgets>=7.0,<8.0",
"notebook",
"build",
"twine",
]
[tool.setuptools.dynamic]
version = { attr = "jux.__version__" }
[tool.setuptools_scm]
[tool.yapf]
column_limit = 120
indent_width = 4
[tool.autoflake]
imports = ["jax", "numpy", "chex"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 120