-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.05 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
mapcat = ["alembic/*", "alembic.ini", "alembic/versions/*"]
[project]
name = "mapcat"
version = "0.2.1"
requires-python = ">=3.10"
dependencies = [
"sqlmodel",
"sqlalchemy[asyncio]",
"aiosqlite",
"alembic",
"pydantic_settings",
"pixell",
"h5py"
]
[project.scripts]
actingest = "mapcat.toolkit.act:main"
mapcatmigrate = "mapcat.helper:migrate"
updatesky = "mapcat.toolkit.update_sky_coverage:main"
mapcatreset = "mapcat.toolkit.reset:main"
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"testcontainers",
"coverage",
"pytest-cov",
"pytest-asyncio",
"pre-commit",
"gevent"
]
[tool.ruff.lint]
preview = true
extend-select = ["I", "DOC501"]
# ignore = ["D417", "D400", "D200", "D103", "D102", "D101", "D100"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.run]
source = [
"mapcat"
]
concurrency = ["gevent", "thread"]