-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.08 KB
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tinker-atropos"
version = "0.1.0"
description = "Integration between Tinker training API and Atropos RL framework"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"atroposlib[all]",
"tinker @ git+https://github.com/thinking-machines-lab/tinker.git",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
"wandb>=0.15.0",
"python-dotenv>=1.0.0",
]
[project.scripts]
rl-server = "tinker_atropos.rl_api_server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.6.0",
"pre-commit>=3.5.0",
]
[tool.setuptools.packages.find]
include = ["tinker_atropos*"]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false