Skip to content

Commit 5829e8e

Browse files
committed
Add PyPi support
1 parent 5c697a8 commit 5829e8e

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# novaposhta-api-client
1+
# novaposhta-python-client
22

33
A Python client for interfacing with the Nova Poshta API. Designed to provide easy access to all API functionalities
44
with emphasis on consistency and usability.
@@ -21,7 +21,7 @@ testing and refinement of all possible parameter combinations.
2121
The package will be available on PyPI soon. For now, it can be installed directly from the GitHub repository
2222

2323
```bash
24-
pip install git+https://github.com/semolex/novaposhta-api-client
24+
pip install git+https://github.com/semolex/novaposhta-python-client
2525
```
2626

2727
## Usage

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
[tool.poetry]
2-
name = "novaposhta"
2+
name = "novaposhta-python-client"
3+
packages = [
4+
{ include = "novaposhta"}
5+
]
36
version = "0.1.0"
47
description = "Python client for Nova Poshta API"
58
authors = ["Oleksii <[email protected]>"]
69
license = "MIT"
710
readme = "README.md"
11+
homepage = "https://github.com/semolex/novaposhta-python-client"
12+
repository = "https://github.com/semolex/novaposhta-python-client"
813

914
[tool.poetry.dependencies]
1015
python = "^3.9"

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from setuptools import setup
22

33
setup(
4-
name='novaposhta-api-client',
4+
name='novaposhta-python-client',
55
version='0.0.9',
66
packages=['novaposhta'],
7-
url='https://github.com/semolex/novaposhta-api-client',
7+
url='https://github.com/semolex/novaposhta-python-client',
88
install_requires=[
99
'httpx',
1010
],
1111
license='MIT',
12-
author='semolex (Oleksii Semeshchuk)',
12+
author='semolex',
1313
author_email='[email protected]',
1414
description='Python client for Nova Poshta API.'
1515
)

0 commit comments

Comments
 (0)