Skip to content

Commit

Permalink
versoin 0.2 deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
fatonsopa committed Jun 16, 2020
1 parent 67af12f commit 4084425
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
6 changes: 6 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
convertify/__init__.py
convertify/convertify.py
convertify/test.py
Empty file modified convertify/__init__.py
100644 → 100755
Empty file.
Empty file modified convertify/converted-images/source_1.webp
100644 → 100755
Empty file.
Empty file modified convertify/converted-images/source_2.webp
100644 → 100755
Empty file.
Empty file modified convertify/converted-images/sub/source_3.webp
100644 → 100755
Empty file.
Empty file modified convertify/converted-images/sub/source_4.webp
100644 → 100755
Empty file.
Empty file modified convertify/convertify.py
100644 → 100755
Empty file.
Empty file modified convertify/images/source_1.jpg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified convertify/images/source_2.jpg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified convertify/images/sub/source_3.jpg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified convertify/images/sub/source_4.jpg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion convertify/test.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from convertify import Convertify
x = Convertify()
x.convert('/Users/faton/Documents/python/image-convertify/images/')
x.convert('<your path here>')
Binary file added dist/convertify-0.2.tar.gz
Binary file not shown.
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
from distutils.core import setup
setup(
name = 'convertify', # How you named your package folder (MyLib)
packages = ['convertify'], # Chose the same as "name"
version = '0.1', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Convet images to a different format', # Give a short description about your library
author = 'Faton Sopa', # Type in your name
author_email = 'faton.sopa@manaferra.com', # Type in your E-Mail
url = 'https://github.com/fatonsopa/convertify', # Provide either the link to your github or to your website
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
keywords = ['pythonforseo', 'convert-image', 'image-to-webp','images','page-speed'], # Keywords that define your package best
install_requires=[ # I get to this in a second
name = 'convertify',
packages = ['convertify'],
version = '0.2',
license='MIT',
description = 'Convet images to a different format',
author = 'Faton Sopa',
author_email = 'faton.sopa@manaferra.com',
url = 'https://github.com/fatonsopa/convertify',
download_url = 'https://github.com/fatonsopa/convertify/blob/master/dist/convertify-0.2.tar.gz',
keywords = ['pythonforseo', 'convert-image', 'image-to-webp','images','page-speed'],
install_requires=[
'Pillow'
],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: SEOs & Developers', # Define that your audience are developers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)

0 comments on commit 4084425

Please sign in to comment.