diff --git a/README.md b/README.md index 839ea06..ffbe044 100644 --- a/README.md +++ b/README.md @@ -24,27 +24,17 @@ ``` - - For those who like enjoying the **latest** releases from [Github](https://github.com) like [me](https://github.com/Simatwa), rather than waiting for the next release: + - For those who like enjoying the **latest** releases from [Github](https://github.com) like [me](https://github.com/Simatwa), rather than waiting for the next one: ```sh pip install git+https://github.com/Simatwa/smartbetsAPI.git ``` -- The hard-core guys with _trust issues_ are very much sorted this way: - - ```sh - - git clone https://github.com/Simatwa/smartbetsAPI.git - - cd smartbetsAPI - - bash install.sh - - #or - -sudo bash install.sh +To install it alongside `REST-API` dependencies simply run: +```sh +pip install "smartbetsapi[api]" ``` ### Usage diff --git a/setup.py b/setup.py index 8f0776b..67d802e 100644 --- a/setup.py +++ b/setup.py @@ -21,13 +21,15 @@ def get_file(nm: str) -> list: long_description="\n".join(get_file("README.md")), long_description_content_type="text/markdown", install_requires=[ - "fastapi[all]==0.110.1", "appdirs==1.4.4", "requests[socks]==2.31.0", "colorama==0.4.6", "bs4==0.0.1", "Faker==15.3.4", ], + extras_require={ + 'api' : ["fastapi[all]==0.110.1",] + }, python_requires=">=3.9", project_urls={ "Bug Report": "https://github.com/Simatwa/smartbetsAPI/issues/new", diff --git a/smartbets_API/__init__.py b/smartbets_API/__init__.py index 53405e2..959d977 100644 --- a/smartbets_API/__init__.py +++ b/smartbets_API/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.2.9" +__version__ = "1.3.0" __author__ = "Smartwa Caleb" from .bet_at_rest_api_level import predictor as rest_api from .predictor import predictor