Skip to content

Commit

Permalink
Update the pyproject and remove WIP caching feature
Browse files Browse the repository at this point in the history
  • Loading branch information
jschaff committed Oct 31, 2024
1 parent 691461a commit f6a734a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 93 deletions.
82 changes: 0 additions & 82 deletions biothings_client/client/cache.py

This file was deleted.

19 changes: 8 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,15 @@ keywords = [
"mygene"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
Expand All @@ -54,23 +57,18 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"httpx>=0.27.2; python_version>='3.8'",
"httpx==0.24.1; python_version=='3.7'",
"requests==2.32.3; python_version>='3.8'",
"requests==2.31.0; python_version=='3.7'",
"httpx>0.24.1; python_version>='3.8'",
"httpx<=0.24.1; python_version=='3.7'",
"requests>=2.32.0; python_version>='3.8'",
"requests<=2.31.0; python_version=='3.7'",
"importlib-metadata; python_version<'3.8'",
]
version = "0.3.1"

[project.optional-dependencies]
dataframe = [
"pandas>=2.2.3; python_version>='3.9'",
"pandas>=1.5.0; python_version>='3.8'",
"pandas>=1.3.0; python_version>='3.7'",
]
dataframe = ["pandas>=1.3.0"]
jsonld = ["PyLD>=0.7.2"]
caching = [
# "hishel>=0.0.31",
"requests_cache>=0.4.13"
]
tests = [
Expand All @@ -81,7 +79,6 @@ tests = [
]



[project.urls]
homepage = "https://github.com/biothings/biothings_client.py"
repository = "https://github.com/biothings/biothings_client.py"
Expand Down

0 comments on commit f6a734a

Please sign in to comment.