Skip to content

Commit

Permalink
Merge pull request #56 from airdot-io/fix-readme
Browse files Browse the repository at this point in the history
fixed installation
  • Loading branch information
asingh9530 authored Aug 10, 2023
2 parents 2f128a3 + bf78a71 commit 9b99f62
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 32 deletions.
1 change: 0 additions & 1 deletion airdot/helpers/data_object_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import pickle
from google.cloud import storage
from typing import Dict, Tuple, Any, cast
import zstd
import pprint
import yaml

Expand Down
1 change: 1 addition & 0 deletions airdot/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION="0.3.0b0"
29 changes: 11 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "airdot"
version = "0.2.0b0"
version = "0.3.0b0"
description = "A code base for deploying ml api "
readme = "README.md"
authors = [{ name = "airdot-io", email = "[email protected]" }]
Expand All @@ -16,23 +16,18 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"black==22.6.0",
"pytest==7.1.2",
"PyYAML==5.4",
"google-api-python-client==2.78.0",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.7.0",
dependencies = [
"google-api-python-client==2.78",
"google-cloud-core==2.3",
"google-cloud-storage==2.7",
"google-auth",
"zstd==1.5.2.6",
"boto==2.49.0",
"botocore==1.29.127",
"boto==2.49",
"botocore==1.29",
"boto3==1.26",
"docker==6.1.2",
"redis==4.5.5",
"seldon-core==1.16",
"docker==6.1",
"redis==4.5",
"pydantic==1.10.8",
"kubernetes==26.1.0"
"kubernetes"
]

requires-python = ">=3.6"
Expand All @@ -41,7 +36,6 @@ requires-python = ">=3.6"
dev = [
"black==22.6.0",
"pytest==7.1.2",
"PyYAML==5.4.1",
"google-api-python-client==2.78.0",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.7.0",
Expand All @@ -52,9 +46,8 @@ dev = [
"boto3==1.26",
"docker==6.1.2",
"redis==4.5.5",
"seldon-core==1.16",
"pydantic==1.10.8",
"kubernetes==26.1.0"
"kubernetes==26"
]

[project.urls]
Expand Down
24 changes: 11 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,25 @@
VERSION = "0.2.0b0"
REQUIRES_PYTHON = ">=3.7.0"
REQUIRED = [
"black==22.6.0",
"pytest==7.1.2",
"PyYAML==5.4.1",
"google-api-python-client==2.78.0",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.7.0",
"black==22.6",
"pytest==7.1",
"google-api-python-client==2.78",
"google-cloud-core==2.3",
"google-cloud-storage==2.7",
"google-auth",
"zstd==1.5.2.6",
"boto==2.49.0",
"botocore==1.29.127",
"boto==2.49",
"botocore==1.29",
"boto3==1.26",
"docker==6.1.2",
"redis==4.5.5",
"docker==6.1",
"redis==4.5",
"seldon-core==1.16",
"pydantic==1.10.8",
"kubernetes==26.1.0"
"kubernetes"
]

DEV_REQUIRED = [
"black==22.6.0",
"pytest==7.1.2",
"PyYAML==5.4.1",
"google-api-python-client==2.78.0",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.7.0",
Expand Down

0 comments on commit 9b99f62

Please sign in to comment.