-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.31 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
# 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 = 'nikolaj@schepsen.eu',
# github
keywords = 'library, video, tools',
# module's metadata
entry_points = {
'console_scripts': ['tnmake=tnmake.main:main']},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
'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 (ffmpeg wrapper)