-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: Initial support for apiv2 (#1085)
This is a checkpoint: Basic relationships and filters work, but I haven't had a chance to test all of the filter operators and update test infra yet. --------- Co-authored-by: uermel <[email protected]>
- Loading branch information
Showing
57 changed files
with
6,580 additions
and
14,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
[build-system] | ||
requires = ["setuptools>=64"] | ||
requires = ["setuptools>=64","setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cryoet_data_portal" | ||
version = "3.1.1" | ||
description = "API Client to facilitate the use of the CryoET Portal. For more information about the API and the project visit https://github.com/chanzuckerberg/cryoet-data-portal/" | ||
authors = [ | ||
{ name = "Chan Zuckerberg Initiative", email = "[email protected]" } | ||
{ name = "Chan Zuckerberg Initiative", email = "[email protected]" }, | ||
] | ||
license = { text = "MIT" } | ||
readme = "README.md" | ||
requires-python = ">= 3.7" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
dependencies= [ | ||
"requests", | ||
"boto3", | ||
"deepmerge", | ||
"gql[requests]", | ||
"tqdm", | ||
dependencies = [ | ||
"requests", | ||
"boto3", | ||
"deepmerge", | ||
"gql[requests]", | ||
"tqdm", | ||
"strcase", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -42,8 +43,15 @@ documentation = "https://chanzuckerberg.github.io/cryoet-data-portal/python-api. | |
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
include = ["cryoet_data_portal*"] # package names should match these glob patterns (["*"] by default) | ||
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default) | ||
include = [ | ||
"cryoet_data_portal*", | ||
] # package names should match these glob patterns (["*"] by default) | ||
exclude = [ | ||
"tests*", | ||
] # exclude packages matching these glob patterns (empty by default) | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools_scm] | ||
root = "../../.." | ||
|
@@ -55,6 +63,4 @@ warn_unreachable = true | |
strict = true | ||
|
||
[tool.pytest.ini_options] | ||
markers = [ | ||
"expensive: too expensive to run regularly or in CI", | ||
] | ||
markers = ["expensive: too expensive to run regularly or in CI"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.