-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (54 loc) · 1.19 KB
/
pyproject.toml
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
[project]
name = "DSaaS"
description = "Data streams as a service"
version = "0.0.1a"
authors = [
{ name = "Valerie Hayot-Sasson", email = "[email protected]" },
{ name = "Sudershan Sridhar", email = "[email protected]" }
]
dependencies = [
"proxystore",
"requests",
"pandas",
"flask",
"flask-sqlalchemy",
"flask-migrate",
"jsonschema",
"psycopg2",
"globus_compute_sdk"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"tox",
"black"
]
server = [
"flask==2.1.0",
]
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["Dockerfiles*", "scripts*", "workflow*"]
[tool.ruff]
extend-select = ["Q"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = [
"tests/*",
"aero/app/decorators.py",
"aero/globus/*",
"aero/app/utils.py",
"aero/automate/timer.py",
"aero/automate/policy.py"
]
fail_under = 100
exclude_also = [
"def search",
"except ServiceError",
"except Exception"
]