-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.51 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup
from subnuker import __program__
from subnuker import __version__
def read(filename):
with open(filename) as f:
return f.read()
setup(
name=__program__,
version=__version__,
author='Brian Beffa',
author_email='brbsix@gmail.com',
description='Remove spam and advertising from subtitle files',
long_description=read('README.rst'),
url='https://github.com/brbsix/subnuker',
license='GPLv3',
keywords=['advertising', 'srt', 'subtitle'],
py_modules=['subnuker'],
install_requires=['batchpath', 'chardet'],
entry_points={
'console_scripts': ['subnuker=subnuker:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Multimedia :: Video',
'Topic :: Text Processing',
'Topic :: Utilities',
],
)