-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.28 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
49
50
51
52
[project]
name="cap_sc_client"
version="2.6.0"
license = "MIT"
authors= [
{ name="R. Mukhin" },
{ name="E. Biederstedt" },
{ name="A. Isaev" },
{ name="M. Sokolov" },
]
description = "Python client for Cell-Annotation-Platform (CAP) GraphQL API."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"httpx>=0.27.2",
"pydantic>=2.10.3",
"pydantic_core>=2.27.1",
"pandas>=2.0.0",
]
[project.urls]
Homepage="https://github.com/cellannotation/cap-python-client"
Documentation="https://github.com/cellannotation/cap-python-client/blob/main/README.md"
Issues="https://github.com/cellannotation/cap-python-client/issues"
Changelog="https://github.com/cellannotation/cap-python-client/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools"]
[project.optional-dependencies]
dev = ["ariadne"]
[tool.ariadne-codegen]
remote_schema_url = "https://celltype.info/graphql"
queries_path="queries.graphql"
async_client=false
include_all_inputs=false
include_all_enums=false
target_package_path="./cap_sc_client/"
target_package_name="client"
client_name="_Client"
[tool.setuptools.packages.find]
exclude = ["tmp*", "test*", "examples*"]
[tool.pytest.ini_options]
pythonpath = ["./"]