We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d60294 commit 38dba67Copy full SHA for 38dba67
setup.py
@@ -36,7 +36,7 @@ def run(self):
36
print("Repository is now clean!")
37
38
setup(name='git-repo',
39
- version='1.5.0',
+ version='1.5.1',
40
description='Tool for managing remote repositories from your git CLI!',
41
classifiers=[
42
# 'Development Status :: 2 - Pre-Alpha',
@@ -80,8 +80,13 @@ def run(self):
80
git-repo = git_repo.repo:cli
81
""",
82
license='GPLv2',
83
- packages=['git_repo'],
84
- test_suite='nose.collector',
85
- tests_require=['nose'],
+ packages=find_packages(exclude=['git_repo']),
+ test_suite='pytest',
+ tests_require=[
86
+ 'pytest',
87
+ 'pytest-cov',
88
+ 'pytest-sugar',
89
+ 'pytest-capturelog'
90
+ ],
91
zip_safe=False
92
)
0 commit comments