-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
22 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |