-
Notifications
You must be signed in to change notification settings - Fork 23
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
323ddb6
commit c1237ce
Showing
7 changed files
with
204 additions
and
162 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
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 |
---|---|---|
|
@@ -7,46 +7,46 @@ | |
|
||
def readme(): | ||
try: | ||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
return f.read() | ||
except BaseException: | ||
pass | ||
|
||
|
||
setup(name='wallgen', | ||
version='1.0', | ||
description='Generate low poly wallpapers', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
|
||
author='Subhrajit Prusty', | ||
author_email='[email protected]', | ||
url='http://github.com/SubhrajitPrusty/wallgen', | ||
|
||
setup_requires=['setuptools>=40.0.0'], | ||
|
||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|
||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
|
||
'License :: OSI Approved :: MIT License', | ||
|
||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
|
||
keywords='image PIL wallpaper theme', | ||
license='MIT', | ||
packages=find_packages(), | ||
install_requires=['pillow', 'click', 'scipy', | ||
'numpy', 'Cython', 'scikit-image', | ||
'loguru'], | ||
entry_points=""" | ||
setup( | ||
name="wallgen", | ||
version="1.0", | ||
description="Generate low poly wallpapers", | ||
long_description=readme(), | ||
long_description_content_type="text/markdown", | ||
author="Subhrajit Prusty", | ||
author_email="[email protected]", | ||
url="http://github.com/SubhrajitPrusty/wallgen", | ||
setup_requires=["setuptools>=40.0.0"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
keywords="image PIL wallpaper theme", | ||
license="MIT", | ||
packages=find_packages(), | ||
install_requires=[ | ||
"pillow", | ||
"click", | ||
"scipy", | ||
"numpy", | ||
"Cython", | ||
"scikit-image", | ||
"loguru", | ||
], | ||
entry_points=""" | ||
[console_scripts] | ||
wallgen=wallgen:cli | ||
""", | ||
) | ||
) |
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
Oops, something went wrong.