File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
- # novaposhta-api -client
1
+ # novaposhta-python -client
2
2
3
3
A Python client for interfacing with the Nova Poshta API. Designed to provide easy access to all API functionalities
4
4
with emphasis on consistency and usability.
@@ -21,7 +21,7 @@ testing and refinement of all possible parameter combinations.
21
21
The package will be available on PyPI soon. For now, it can be installed directly from the GitHub repository
22
22
23
23
``` bash
24
- pip install git+https://github.com/semolex/novaposhta-api -client
24
+ pip install git+https://github.com/semolex/novaposhta-python -client
25
25
```
26
26
27
27
## Usage
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
- name = " novaposhta"
2
+ name = " novaposhta-python-client"
3
+ packages = [
4
+ { include = " novaposhta" }
5
+ ]
3
6
version = " 0.1.0"
4
7
description = " Python client for Nova Poshta API"
5
8
authors = [
" Oleksii <[email protected] >" ]
6
9
license = " MIT"
7
10
readme = " README.md"
11
+ homepage = " https://github.com/semolex/novaposhta-python-client"
12
+ repository = " https://github.com/semolex/novaposhta-python-client"
8
13
9
14
[tool .poetry .dependencies ]
10
15
python = " ^3.9"
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
setup (
4
- name = 'novaposhta-api -client' ,
4
+ name = 'novaposhta-python -client' ,
5
5
version = '0.0.9' ,
6
6
packages = ['novaposhta' ],
7
- url = 'https://github.com/semolex/novaposhta-api -client' ,
7
+ url = 'https://github.com/semolex/novaposhta-python -client' ,
8
8
install_requires = [
9
9
'httpx' ,
10
10
],
11
11
license = 'MIT' ,
12
- author = 'semolex (Oleksii Semeshchuk) ' ,
12
+ author = 'semolex' ,
13
13
14
14
description = 'Python client for Nova Poshta API.'
15
15
)
You can’t perform that action at this time.
0 commit comments