-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
50 lines (43 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
[project]
name = "openai-cfps"
version = "0.5.4"
description = "Cell free protein synthesis utilities and data models"
authors = [
{name = "mjastrzebski", email = "mjastrzebski@ginkgobioworks.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.11.5,<3.0.0",
"pandas==2.3.0",
"fsspec==2025.5.1",
"gcsfs==2025.5.1",
"plotly>=5.0.0",
]
[project.urls]
Repository = "https://github.com/ginkgobioworks/ginkgo-automation-cfps"
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
default = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
# Enable flake8-compatible rules
select = ["E", "F", "W"]
# Ignore rules that conflict with black
ignore = ["E203"]
# E203: whitespace before ':' (conflicts with black's formatting)
[tool.ruff.lint.per-file-ignores]
"openai_cfps/models.py" = ["E501"]
# Keep long lines for model descriptions
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"