-
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
Showing
14 changed files
with
129 additions
and
127 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
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,33 +1,40 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='tnmake', # Thumbnail!MAKER | ||
version='0.2.0', | ||
license='GPLv3+', | ||
description='Thumbnail!MAKER creates for you customisable thumbnails with some additional tech information', | ||
package_dir={'':'src'}, | ||
packages=find_packages(where='src'), | ||
author='nschepsen', | ||
author_email='[email protected]', | ||
url='https://github.com/nschepsen/thumbnail-maker', | ||
keywords='library, video, tools', | ||
entry_points={ | ||
# load the project description | ||
|
||
with open('README.md', 'r') as fh: | ||
|
||
ld = fh.read() | ||
|
||
# set up the pip pkg installer | ||
|
||
setup(name = 'tnmake', # Thumbnail!MAKER | ||
version = '0.2.0', | ||
license = 'GPLv3+', | ||
description = 'Thumbnail!MAKER creates customisable thumbnails', | ||
package_dir = {'':'src'}, | ||
packages = find_packages(where='src'), | ||
install_requires = ['python-iso639', 'python-rapidjson>=1.6'], | ||
author = 'nschepsen', | ||
author_email = '[email protected]', | ||
# github | ||
keywords = 'library, video, tools', | ||
# module's metadata | ||
entry_points = { | ||
'console_scripts': ['tnmake=tnmake.main:main']}, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta' | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)' | ||
'Natural Language :: English', | ||
'Natural Language :: German', | ||
'Natural Language :: Italian', | ||
'Natural Language :: Russian', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Desktop Environment', | ||
'Topic :: Home Automation', | ||
'Topic :: Multimedia :: Video :: Display', 'Topic :: Utilities' | ||
] | ||
'Topic :: Multimedia :: Video', 'Topic :: Utilities' | ||
], | ||
long_description = ld, # long description | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/nschepsen/thumbnail-maker' # repo | ||
) | ||
|
||
# Thumbnail!MAKER creates customisable thumbnails and adds some tech details in the picture's header | ||
# Thumbnail!MAKER creates customisable thumbnails (ffmpeg wrapper) |
Binary file not shown.
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
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