File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- # xivapi-py
1
+ # xivapi
2
2
An asynchronous Python client for XIVAPI
3
3
4
4
[ ![ 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 )
6
6
[ ![ Python 3.6] ( https://img.shields.io/badge/python-3.6-green.svg )] ( https://www.python.org/downloads/release/python-360/ )
7
7
8
8
## Requirements
@@ -14,7 +14,7 @@ aiohttp
14
14
15
15
## Installation
16
16
``` python
17
- pip install xivapi- py
17
+ pip install xivapi
18
18
```
19
19
20
20
## Supported API end points
Original file line number Diff line number Diff line change 12
12
VERSION = re .search (r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]' , f .read (), re .MULTILINE ).group (1 )
13
13
14
14
setuptools .setup (
15
- name = 'xivapi-py ' ,
15
+ name = 'xivapi' ,
16
16
author = 'Lethys' ,
17
17
18
18
url = 'https://github.com/xivapi/xivapi-py' ,
19
19
version = VERSION ,
20
- packages = ['xivapi-py ' ],
20
+ packages = ['xivapi' ],
21
21
license = 'MIT' ,
22
22
description = 'An asynchronous Python client for XIVAPI' ,
23
23
long_description = README ,
Original file line number Diff line number Diff line change 2
2
__author__ = 'Lethys'
3
3
__license__ = 'MIT'
4
4
__copyright__ = 'Copyright 2019 (c) Lethys'
5
- __version__ = '0.1.5 '
5
+ __version__ = '0.1.0 '
6
6
7
7
from .client import XIVAPIClient
8
8
from .exceptions import *
You can’t perform that action at this time.
0 commit comments