Skip to content

Commit 2fb7d3b

Browse files
committed
Attempt to fix package
1 parent c3b08fc commit 2fb7d3b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# xivapi-py
1+
# xivapi
22
An asynchronous Python client for XIVAPI
33

44
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/741f410aefad4fa69cc6925ff5d83b4b)](https://www.codacy.com/manual/Yandawl/xivapi-py?utm_source=github.com&utm_medium=referral&utm_content=xivapi/xivapi-py&utm_campaign=Badge_Grade)
5-
[![PyPI version](https://badge.fury.io/py/xivapi-py.svg)](https://badge.fury.io/py/xivapi-py)
5+
[![PyPI version](https://badge.fury.io/py/xivapi.svg)](https://badge.fury.io/py/xivapi)
66
[![Python 3.6](https://img.shields.io/badge/python-3.6-green.svg)](https://www.python.org/downloads/release/python-360/)
77

88
## Requirements
@@ -14,7 +14,7 @@ aiohttp
1414

1515
## Installation
1616
```python
17-
pip install xivapi-py
17+
pip install xivapi
1818
```
1919

2020
## Supported API end points

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
VERSION = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
1313

1414
setuptools.setup(
15-
name='xivapi-py',
15+
name='xivapi',
1616
author='Lethys',
1717
author_email='[email protected]',
1818
url='https://github.com/xivapi/xivapi-py',
1919
version=VERSION,
20-
packages=['xivapi-py'],
20+
packages=['xivapi'],
2121
license='MIT',
2222
description='An asynchronous Python client for XIVAPI',
2323
long_description=README,

xivapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__author__ = 'Lethys'
33
__license__ = 'MIT'
44
__copyright__ = 'Copyright 2019 (c) Lethys'
5-
__version__ = '0.1.5'
5+
__version__ = '0.1.0'
66

77
from .client import XIVAPIClient
88
from .exceptions import *

0 commit comments

Comments
 (0)