Skip to content

Commit 80bc2f3

Browse files
committed
Merge branch 'develop'
2 parents e203bd5 + 93509b0 commit 80bc2f3

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# v0.1.1 - 29.08.2021
2+
3+
##### New
4+
* `setup.py` added
5+
6+
7+
# v0.1.0 - 09.04.2021
8+
9+
Initial version

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
JPEG structure and Exif metadata parsing library.
22

3+
## JPEG File Structure
4+
5+
![JPEG Structure](docs/jpeg_format.png)
6+
37
## Requirements
48

59
* Python >= 3.7
610
* No extra dependencies
7-
## JPEG File Structure
811

912

10-
![JPEG Structure](docs/jpeg_format.png)
13+
## Install
14+
15+
```
16+
git clone https://github.com/MakarovDi/jparse.git
17+
pip install ./jparse
18+
```
1119

1220
## Examples
1321

jparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.1.1'
22
__author__ = 'Dmitry Makarov'
33

44
from jparse.JpegMetaParser import JpegMetaParser, TagPath, ValueType

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
if __name__ == '__main__':
3+
import setuptools
4+
5+
setuptools.setup(name='jparse',
6+
version='0.1.1',
7+
description='JPEG structure and Exif metadata parsing library',
8+
author='Dmitry Makarov',
9+
author_email='[email protected]',
10+
url='https://github.com/MakarovDi/jparse',
11+
packages=setuptools.find_namespace_packages(),
12+
python_requires='>=3.7.0'
13+
)

0 commit comments

Comments
 (0)