Skip to content

Commit 38dba67

Browse files
committed
fixed distribution issues
1 parent 7d60294 commit 38dba67

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run(self):
3636
print("Repository is now clean!")
3737

3838
setup(name='git-repo',
39-
version='1.5.0',
39+
version='1.5.1',
4040
description='Tool for managing remote repositories from your git CLI!',
4141
classifiers=[
4242
# 'Development Status :: 2 - Pre-Alpha',
@@ -80,8 +80,13 @@ def run(self):
8080
git-repo = git_repo.repo:cli
8181
""",
8282
license='GPLv2',
83-
packages=['git_repo'],
84-
test_suite='nose.collector',
85-
tests_require=['nose'],
83+
packages=find_packages(exclude=['git_repo']),
84+
test_suite='pytest',
85+
tests_require=[
86+
'pytest',
87+
'pytest-cov',
88+
'pytest-sugar',
89+
'pytest-capturelog'
90+
],
8691
zip_safe=False
8792
)

0 commit comments

Comments
 (0)