-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (55 loc) · 1.87 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (55 loc) · 1.87 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
# -*- coding: utf-8 -*-
"""
Application setup script
To build package:
python3 setup.py sdist bdist_wheel clean
"""
# standard imports
import io
import os
# external imports
from setuptools import find_packages, setup
# application imports
from subsystem import __description__, __program__, __version__
def read(*names, **kwargs):
"""Return contents of text file (in the same directory as this file)."""
return io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
).read()
setup(
name=__program__,
version=__version__,
description=__description__,
author='Brian Beffa',
author_email='brbsix@gmail.com',
long_description=read('README.rst'),
url='https://github.com/brbsix/subsystem',
license='GPLv3',
keywords=['advertising', 'download', 'periscope', 'rename', 'srt',
'ss', 'subscope', 'subtitle', 'thunar', 'yad'],
packages=find_packages(),
install_requires=['subnuker'],
entry_points={
'console_scripts': ['subsystem=subsystem.subsystem: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 :: Utilities',
],
)