-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (56 loc) · 2.45 KB
/
setup.py
File metadata and controls
69 lines (56 loc) · 2.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## Copyright (c) 2014 Arseniy Kuznetsov
##
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License
## as published by the Free Software Foundation; either version 2
## of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
from setuptools import setup, find_packages
from os import path
# read the README.md contents
pkg_dir = path.abspath(path.dirname(__file__))
with open(path.join(pkg_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='batchmp',
version='1.4.1',
url='https://github.com/akpw/batch-mp-tools',
author='Arseniy Kuznetsov',
author_email='k.arseniy@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown',
description=('Command-line tools for batch media processing'),
license='GPL-2.0-or-later',
packages=find_packages(exclude=['test*']),
keywords = 'batch processing media video audio CLI rename tags ID3',
install_requires = ['mutagen>=1.27', 'pygtrie>=2.3.2', 'filetype>=1.0.7', 'mediafile>=0.13.0'], ##, 'profilehooks>=1.11.0'],
entry_points={'console_scripts': [
'batchmp = batchmp.cli.base.bmp_dispatch:main',
'renamer = batchmp.cli.renamer.renamer_dispatch:main',
'tagger = batchmp.cli.tagger.tagger_dispatch:main',
'bmfp = batchmp.cli.bmfp.bmfp_dispatch:main',
]},
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
)