-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
9b880d8
commit 0330992
Showing
4 changed files
with
31 additions
and
26 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,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
python -m black \ | ||
--line-length 120 \ | ||
--target-version py35 \ | ||
--exclude "/(\.eggs|\.git|\.hg|\.mypy_cache|\.nox|\.tox|\.venv|_build|buck-out|build|dist|migrations)/" \ | ||
. |
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
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 +1,2 @@ | ||
twine | ||
twine==3.2.0 | ||
black==19.10b0 |
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,27 +1,22 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='nm_iconfinder', | ||
packages=['nm_iconfinder'], | ||
version='0.1.2', | ||
license='ISC', | ||
description='Find icons of a website given a URL', | ||
author='newsmail.today', | ||
author_email='us@newsmail.today', | ||
url='https://github.com/newsmail-today/iconfinder', | ||
keywords=['icon', 'favicon', 'newsmail'], | ||
install_requires=[ | ||
"beautifulsoup4", | ||
"lxml", | ||
"Pillow", | ||
"requests", | ||
], | ||
name="nm_iconfinder", | ||
packages=["nm_iconfinder"], | ||
version="0.1.2", | ||
license="ISC", | ||
description="Find icons of a website given a URL", | ||
author="newsmail.today", | ||
author_email="us@newsmail.today", | ||
url="https://github.com/newsmail-today/iconfinder", | ||
keywords=["icon", "favicon", "newsmail"], | ||
install_requires=["beautifulsoup4", "lxml", "Pillow", "requests",], | ||
classifiers=[ | ||
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: ISC License (ISCL)', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: ISC License (ISCL)", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
) |