-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.66 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
52
53
54
55
56
57
58
[build-system]
requires = ["uv_build>=0.8.11,<0.11.0"]
build-backend = "uv_build"
[project]
authors = [
{name = "Elizabeth Berrigan", email = "eberrigan@salk.edu"},
{name = "Talmo Pereira", email = "talmo@salk.edu"},
{name = "Andrew Park", email = "hep003@ucsd.edu"},
]
dependencies = [
"flask~=3.1.2",
"werkzeug~=3.1.3",
"flask_sqlalchemy~=3.1.1",
"sqlalchemy>=2.0,<3.0",
"psycopg2-binary~=2.9.10",
"hydra-core>=1.3,<2.0",
"omegaconf>=2.3,<3.0",
"requests~=2.32.5",
"Flask-HTTPAuth~=4.8.0",
"boto3>=1.26,<2.0",
"apscheduler~=3.11.1",
"urllib3>=2.3.0,<3.0",
]
description = "VM Allocator Service Package for Lablink"
name = "lablink-allocator-service"
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.1"
[project.optional-dependencies]
config = [] # Config schema only (pure dataclasses, no heavy deps)
dev = ["twine", "build", "pytest", "ruff", "pytest-cov"]
[project.scripts]
lablink-allocator = "lablink_allocator_service.main:main"
generate-init-sql = "lablink_allocator_service.generate_init_sql:main"
lablink-validate-config = "lablink_allocator_service.validate_config:main"
[tool.setuptools.package-data]
lablink_allocator_service = ["terraform/**/*", "conf/*.yaml"]
[project.urls]
Homepage = "https://github.com/talmolab/lablink"
Issues = "https://github.com/talmolab/lablink/issues"
[tool.ruff.lint]
ignore = [
"E721", # Use isinstance() for type comparisons
"E731", # Do not assign a lambda expression
"E741", # Ambiguous variable name
"F405", # May be undefined, or defined from star imports
]
select = ["E", "F", "W"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "E402"]
"tests/*" = ["F403", "F405", "E501"]