Skip to content

Commit

Permalink
Merge pull request #62 from nf1s/fix-username
Browse files Browse the repository at this point in the history
fixes docs
  • Loading branch information
nf1s committed Dec 10, 2021
2 parents f3779b5 + bab1fa8 commit ff2e834
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ __pycache__
.venv
.vim
site
.undodir
4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MIT License
Copyright (c) 2020 Ahmed Nafies Okasha Mohamed
Copyright (c) 2020 Ahmed Nafies
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
Expand All @@ -14,4 +14,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Covid

[![CircleCI](https://circleci.com/gh/ahmednafies/covid.svg?style=shield)](https://circleci.com/gh/ahmednafies/covid) [![codecov](https://codecov.io/gh/ahmednafies/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/ahmednafies/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/ahmednafies/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![GitHub](https://img.shields.io/github/license/ahmednafies/covid)
[![CircleCI](https://circleci.com/gh/nf1s/covid.svg?style=shield)](https://circleci.com/gh/nf1s/covid) [![codecov](https://codecov.io/gh/nf1s/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/nf1s/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/nf1s/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![GitHub](https://img.shields.io/github/license/nf1s/covid)

## Description

Python package to get information regarding the novel corona virus provided
by Johns Hopkins university and worldometers.info

Full Documentation can be found [here](https://ahmednafies.github.io/covid/)
Full Documentation can be found [here](https://nf1s.github.io/covid/)

![corona.jpeg](docs/img/corona.jpeg)

Expand Down
6 changes: 3 additions & 3 deletions covid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from covid.john_hopkins import Covid as JohnHopkinsCovid
from covid.worldometers import Covid as WorldometersCovid

__author__ = "Ahmed Nafies Okasha Mohamed <ahmed.nafies@gmail.com>"
__copyright__ = "Copyright 2020, Ahmed Nafies Okasha Mohamed"
__author__ = "Ahmed Nafies <ahmed.nafies@gmail.com>"
__copyright__ = "Copyright 2020, Ahmed Nafies"
__license__ = "MIT"
__version__ = "2.5.1"
__version__ = "2.5.2"

services = {
"john_hopkins": JohnHopkinsCovid,
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Getting Started

[![CircleCI](https://circleci.com/gh/ahmednafies/covid.svg?style=shield)](https://circleci.com/gh/ahmednafies/covid) ![CircleCI](https://img.shields.io/circleci/build/github/ahmednafies/covid/master) [![codecov](https://codecov.io/gh/ahmednafies/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/ahmednafies/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/ahmednafies/covid) ![GitHub top language](https://img.shields.io/github/languages/top/ahmednafies/covid) ![PyPI](https://img.shields.io/pypi/v/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![license](https://img.shields.io/badge/license-MIT-green)
![GitHub pull requests](https://img.shields.io/github/issues-pr/ahmednafies/covid) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/ahmednafies/covid) ![GitHub issues](https://img.shields.io/github/issues/ahmednafies/covid) ![GitHub closed issues](https://img.shields.io/github/issues-closed/ahmednafies/covid)
[![CircleCI](https://circleci.com/gh/nf1s/covid.svg?style=shield)](https://circleci.com/gh/nf1s/covid) ![CircleCI](https://img.shields.io/circleci/build/github/nf1s/covid/master) [![codecov](https://codecov.io/gh/nf1s/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/nf1s/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/nf1s/covid) ![GitHub top language](https://img.shields.io/github/languages/top/nf1s/covid) ![PyPI](https://img.shields.io/pypi/v/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![license](https://img.shields.io/badge/license-MIT-green)
![GitHub pull requests](https://img.shields.io/github/issues-pr/nf1s/covid) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/nf1s/covid) ![GitHub issues](https://img.shields.io/github/issues/nf1s/covid) ![GitHub closed issues](https://img.shields.io/github/issues-closed/nf1s/covid)

Python package to get information regarding the novel corona virus provided
by Johns Hopkins university and worldometers.info

![corona.jpeg](img/corona.jpeg)

Full code on [github](https://github.com/ahmednafies/covid)
Full code on [github](https://github.com/nf1s/covid)

## Requirements

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
import io
import re

from setuptools import setup

with io.open("README.md") as f:
Expand All @@ -15,7 +16,7 @@
description="Python package to get information regarding the novel corona virus provided by Johns Hopkins university and worldometers.info",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://ahmednafies.github.io/covid/",
url="https://nf1s.github.io/covid/",
author="Ahmed Nafies",
author_email="ahmed.nafies@gmail.com",
license="MIT",
Expand All @@ -34,8 +35,8 @@
"docs": ["mkdocs", "mkdocs-material"],
},
project_urls={
"Documentation": "https://ahmednafies.github.io/covid/",
"Source": "https://github.com/ahmednafies/covid",
"Documentation": "https:/nf1s.github.io/covid/",
"Source": "https://github.com/nf1s/covid",
},
classifiers=[
"Intended Audience :: Developers",
Expand Down

0 comments on commit ff2e834

Please sign in to comment.