Skip to content

Commit 15a7ae6

Browse files
committed
tmuxp._vendor to packages
1 parent 385946e commit 15a7ae6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
description='Manage tmux workspaces from JSON and YAML, pythonic API, '
4040
'shell completion',
4141
long_description=open('README.rst').read(),
42-
packages=['tmuxp', 'tmuxp.testsuite'],
42+
packages=['tmuxp', 'tmuxp.testsuite',
43+
'tmuxp._vendor', 'tmuxp._vendor.colorama'],
4344
include_package_data=True,
4445
install_requires=install_reqs,
4546
tests_require=tests_reqs,

tmuxp/log.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
import logging.handlers
2121
import sys
2222
import time
23-
from tmuxp._vendor.colorama import init
24-
from tmuxp._vendor.colorama import Fore, Back, Style
23+
from ._vendor.colorama import init
24+
from ._vendor.colorama import Fore, Back, Style
2525
from .util import unicode, bytes, basestring
2626

2727
try:

0 commit comments

Comments
 (0)