From f80f268d9fa1b3234e09e13463cdad9c054c440b Mon Sep 17 00:00:00 2001 From: the fixer of typos <30674647+umbresp@users.noreply.github.com> Date: Mon, 29 Jan 2018 16:14:19 -0600 Subject: [PATCH] since i screwed up v1.1.5 --- LICENSE | 2 +- docs/intro.md | 4 ++-- pynite.egg-info/PKG-INFO | 2 +- pynite/__init__.py | 4 ++-- setup.py | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index eecd31f..bc11a12 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 SharpBit(core) Umbresp(docs) +Copyright (c) 2018 RBC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/intro.md b/docs/intro.md index 4134c8d..316b453 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -4,7 +4,7 @@ Welcome to PyNite™! PyNite is an asynchronous Python wrapper for the [Fortnite Tracker Network](https://fortnitetracker.com). The wrapper is currently in progress, meaning we are **currently** developing more wrapper classes, but for now, all the data from FTN should be accessible to you, albeit in a more difficult manner. ### Installation -PyNite is available through `pip`, but not PyPI as of currently. We will publish this module to PyPI once it becomes more practical. +PyNite is available through `pip`. #### To install: ```pip install pynite``` @@ -13,7 +13,7 @@ This should install PyNite along with its dependencies. If for some reason the d and ```pip install python-box``` -You can update PyNite by running ```pip install -U pynite```. The current stable version is `1.1.4`. +You can update PyNite by running ```pip install -U pynite```. The current stable version is `1.1.5`. PyNite requires Python 3.6 or later versions. diff --git a/pynite.egg-info/PKG-INFO b/pynite.egg-info/PKG-INFO index 38d8a44..48cf1e0 100644 --- a/pynite.egg-info/PKG-INFO +++ b/pynite.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: pynite -Version: 1.1.4 +Version: 1.1.5 Summary: An asynchronous Python API wrapper for the Fortnite API Home-page: https://github.com/cree-py/pynite Author: SharpBit and Umbresp diff --git a/pynite/__init__.py b/pynite/__init__.py index 535fdf0..c57ec79 100644 --- a/pynite/__init__.py +++ b/pynite/__init__.py @@ -8,8 +8,8 @@ ############ -__version__ = 'v.1.1.4' +__version__ = 'v.1.1.5' __title__ = 'pynite' __license__ = 'MIT' -__author__ = 'SharpBit & Umbresp (But mostly SharpBit)' +__author__ = 'SharpBit & Umbresp' __github__ = 'https://github.com/cree-py/pynite' diff --git a/setup.py b/setup.py index 6441dfd..790d3c2 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,11 @@ from setuptools import setup, find_packages setup( name='pynite', - version='1.1.4', + version='1.1.5', description='An async Python API wrapper for the Fortnite API', long_description="async 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', - author='SharpBit(core) Umbresp(docs)', + author='SharpBit & Umbresp', author_email='creepy.org3301@gmail.com', license='MIT', keywords=['fortnite, pynite, api-wrapper, async'],