-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) Β· 1.15 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) Β· 1.15 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
[project]
name = "d3b_api_client_cli"
version = "0.0.1"
authors = [
{ name="Charles Haynes", email="haynescd@chop.edu" },
{ name="Natasha Singh", email="singhn4@chop.edu" },
]
description = "A CLI tool with functions that interact with commonly used D3b APIs"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: Linux",
]
dependencies = [
"click==8.1.7",
"python-dotenv==1.0.1",
"gql==3.5.0",
"gql[aiohttp]==3.5.0",
"requests==2.32.3",
"pandas==2.2.3",
"psycopg2-binary==2.9.10",
"sqlalchemy==2.0.36",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.3",
"pytest-mock==3.14.0",
"black==24.10.0",
"testcontainers[postgres]==4.9.0",
"requests-mock==1.12.1",
]
[project.scripts]
d3b-clients = "d3b_api_client_cli.cli:main"
[project.urls]
Homepage = "https://github.com/d3b-center/d3b-api-client-cli"
Issues = "https://github.com/d3b-center/d3b-api-client-cli/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["data"]