-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.07 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8"]
[project]
authors = [{ name = "Conrad Bzura", email = "conradbzura@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"aiohttp",
"click",
"debugpy",
"fastapi",
"motor",
"pymongo",
"requests",
"strawberry-graphql",
"uvicorn",
"wool",
]
description = "A Python utility for parsing and normalizing various DCC datapackages."
dynamic = ["version"]
license = { text = "MIT License" }
name = "cfdb"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
[project.optional-dependencies]
dev = ["debugpy", "httpx", "hypothesis", "pytest-asyncio", "pytest-mock", "ruff"]
[project.scripts]
cfdb = "cfdb.cli:cli"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "src"
[tool.setuptools_scm]
local_scheme = "dirty-tag"
version_scheme = "release-branch-semver"