Skip to content

Commit a07ecb6

Browse files
committed
Package name for PyPI
1 parent 3876e78 commit a07ecb6

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
project.sublime-project
22
project.sublime-workspace
3-
build
3+
build
4+
MANIFEST
5+
dist/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Python bindings for [Jsonic](https://github.com/rohanrhu/jsonic) JSON reader lib
44
## Install
55
PIP:
66
```bash
7-
pip install jsonic
7+
pip install pyjsonic
88
```
99

1010
Git:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
name = jsonic
2+
name = pyjsonic
33
version = 1.0
44
author = Oğuzhan Eroğlu
55
author-email = [email protected]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
from distutils.core import setup, Extension
1212

1313
jsonic = Extension(
14-
"jsonic",
14+
"pyjsonic",
1515
sources = [
1616
"python-jsonic.c",
1717
"lib/jsonic/jsonic.c"
1818
]
1919
)
2020

2121
setup(
22-
name = "jsonic",
22+
name = "pyjsonic",
2323
version = "1.0",
2424
description = "Python bindings for Jsonic library.",
2525
ext_modules = [jsonic]

0 commit comments

Comments
 (0)