-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
87 lines (77 loc) · 1.81 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "splash-userservice"
version = "0.0.1.dev0"
description = "API for defining users and groups at scientific user facilities"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Dylan McReynolds", email = "dmcreynolds@lbl.gov"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi",
"uvicorn",
"certifi",
"httpx>=0.24",
"pydantic",
"starlette",
"typer",
]
dynamic = []
[project.optional-dependencies]
dev = [
"codecov",
"coverage",
"flake8",
"pytest",
"sphinx",
"ipython",
"matplotlib",
"numpydoc",
"sphinx-copybutton",
"sphinx_rtd_theme",
]
[dependency-groups]
dev = [
"codecov",
"coverage",
"flake8",
"pytest",
"sphinx",
"ipython",
"matplotlib",
"numpydoc",
"sphinx-copybutton",
"sphinx_rtd_theme",
]
[project.urls]
Repository = "https://github.com/als-computing/splash-userservice"
Documentation = "https://splash-userservice.readthedocs.io"
[tool.hatch.build.targets.wheel]
packages = ["splash_userservice", "alshub"]
[tool.pytest.ini_options]
testpaths = ["splash_userservice/tests", "alshub/tests"]
addopts = "-v"
[tool.coverage.run]
source = ["splash_userservice", "alshub"]
omit = [
"*/tests/*",
"*/conftest.py",
]
[tool.flake8]
max-line-length = 120
exclude = [".git", "__pycache__", "build", "dist", ".venv"]
ignore = ["E203", "W503"]