-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.09 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[project]
name = "sfapi_client"
dynamic = ['version']
authors = [
{ name="Chris Harris", email="[email protected]" },
{ name="Nicholas Tyler", email="[email protected]" }
]
description = "Python client for NERSC SF API"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"authlib",
"httpx",
"pydantic~=2.0",
"pydantic-settings",
"tenacity"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[tool.black]
exclude = '''
(
src/sfapi_client/_sync |
src/sfapi_client/_async/_models.py |
sfapi_client/examples/
)
'''
[tool.ruff]
exclude = [
"src/sfapi_client/_sync",
"src/sfapi_client/_async/_models.py"
]
[project.optional-dependencies]
docs = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-jupyter"
]
test = [
"pytest",
"pydantic[dotenv]",
"pytest-mock",
"pytest-asyncio"
]