-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
74 lines (67 loc) · 1.67 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "firecrest"
[project]
name = "pyfirecrest"
dynamic = ["version"]
description = "pyFirecrest is a python wrapper for FirecREST"
authors = [{name = "CSCS Swiss National Supercomputing Center"}]
maintainers = [
{name = "Eirini Koutsaniti", email = "[email protected]"},
{name = "Juan Pablo Dorsch", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"requests>=2.14.0",
"PyJWT>=2.4.0",
"typer[all]~=0.7.0",
"packaging>=21.0",
"httpx>=0.24.0",
"PyYAML>=5.1"
]
[project.urls]
Homepage = "https://pyfirecrest.readthedocs.io"
Documentation = "https://pyfirecrest.readthedocs.io"
Repository = "https://github.com/eth-cscs/pyfirecrest"
[project.scripts]
firecrest = "firecrest.cli_script:main"
[project.optional-dependencies]
test = [
"pytest>=5.3",
"flake8~=5.0",
"mypy~=0.991",
"types-requests~=2.28.11",
"pytest-httpserver~=1.0.6",
"pytest-asyncio>=0.21.1",
"types-PyYAML>=5.1"
]
docs = [
"sphinx>=4.0",
"sphinx-rtd-theme>=1.0",
"myst-parser>=0.16",
"sphinx-autobuild>=2021.0",
"sphinx-click==3.0.2"
]
[tool.mypy]
show_error_codes = true
strict = false
exclude = [
"^docs/.*py$",
"^tests/.*py$",
]
[[tool.mypy.overrides]]
module = [
"rich.*",
]
ignore_missing_imports = true