-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·99 lines (90 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·99 lines (90 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "splash_tiled"
version = "0.2.8.1a4"
description = "A tiled-based data management system for the Advanced Light Source"
readme = "README.md"
authors = [
{name = "ALS Team", email = "contact@als.lbl.gov"},
]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"PyYAML>=6",
"typer>=0.12",
"APScheduler>=3.10",
"tiled[client]>=0.2.8",
]
[project.optional-dependencies]
tiled-all = [
"tiled[all]>=0.2.8",
]
bl733 = [
"fabio",
]
dev = [
"flake8",
"black",
"isort",
"mypy",
"pytest",
"pytest-cov",
"pytest-asyncio",
"fabio",
"tiled[server]>=0.2.8"
]
[project.urls]
Homepage = "https://github.com/als-lbl/splash_tiled"
Repository = "https://github.com/als-lbl/splash_tiled"
Documentation = "https://github.com/als-lbl/splash_tiled#readme"
[project.scripts]
als-hub = "splash_tiled.access_control.user_office:main"
compile-tags = "splash_tiled.access_control.tiled_tags:main"
access-query = "splash_tiled.access_control.inspect:main"
access = "splash_tiled.access_control.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 88
target-version = ["py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --cov=splash_tiled --cov-report=term-missing"
testpaths = [
"tests",
]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"