diff --git a/README.md b/README.md index 976fc71..a633c29 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ WIP Asynchronous python wrapper for the Fortnite API. #### Installation Type this into your console: ``` -pip install git+https://github.com/cree-py/pynite +pip install pynite ``` Keep in mind that this is a work in progress and will be updated continuously. #### Bugs and Errors If you come across an unknown error or bug, please [open an issue](https://github.com/cree-py/pynite/issues/new). #### Documentation -Documentation is coming soon! If you would like to contribute, let us know by joining our [discord server](https://discord.gg/RzsYQ9f). +Documentation is in progress! If you would like to contribute, let us know by joining our [discord server](https://discord.gg/RzsYQ9f). #### Misc This is an async python wrapper for the fortnite API. If you would like to help, just let us know [here](https://discord.gg/RzsYQ9f)! diff --git a/docs/intro.md b/docs/intro.md index 33ed556..f8259d3 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -6,14 +6,14 @@ Welcome to PyNite™! PyNite is an asynchronous Python wrapper for the [Fortnite ### Installation PyNite is available through `pip`, but not PyPI as of currently. We will publish this module to PyPI once it becomes more practical. #### To install: -```pip install git+https://github.com/cree-py/pynite``` +```pip install pynite``` This should install PyNite along with its dependencies. If for some reason the dependencies are not installed, PyNite will not work correctly. You can manually install the dependencies through ```pip install aiohttp``` and ```pip install python-box``` -You can update PyNite by running ```pip install -U git+https://github.com/cree-py/pynite```. The current stable version is `1.1.2`. +You can update PyNite by running ```pip install -U pynite```. The current stable version is `1.1.3`. PyNite requires Python 3.6 or later versions. diff --git a/pynite.egg-info/PKG-INFO b/pynite.egg-info/PKG-INFO index 9ba6ec3..ba5f231 100644 --- a/pynite.egg-info/PKG-INFO +++ b/pynite.egg-info/PKG-INFO @@ -1,11 +1,11 @@ Metadata-Version: 1.0 Name: pynite -Version: 1.1.2 +Version: 1.1.3 Summary: An asynchronous Python API wrapper for the Fortnite API Home-page: https://github.com/cree-py/pynite Author: SharpBit and Umbresp Author-email: creepy.org3301@gmail.com License: MIT -Description: Asynchronous python wrapper for the Fortnite API. +Description: Asynchronous python wrapper for the Fortnite API. Also, we don't yet have a good description so this empty page will have to do. Keywords: fortnite pynite api-wrapper async Platform: UNKNOWN diff --git a/setup.py b/setup.py index 4b09d01..d6c6ca2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # SharpBit told me to edit something setup( name='pynite', - version='1.1.2', + version='1.1.3', description='An asynchronous Python API wrapper for the Fortnite API', long_description="Asynchronous python wrapper for the Fortnite API. Also, we don't yet have a good description so this empty page will have to do.", url='https://github.com/cree-py/pynite',