forked from samkuehn/bitbucket-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
107 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
coverage | ||
flexmock | ||
nose | ||
unittest2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[nosetests] | ||
detailed-errors=1 | ||
with-coverage=1 | ||
verbosity=2 | ||
cover-package=compass | ||
cover-html=1 | ||
|
||
[flake8] | ||
max-line-length = 200 | ||
exclude = ./tests/*.py,./compass/__init__.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup, find_packages | ||
|
||
TEST_REQUIRES = [ | ||
'coverage', | ||
'flexmock', | ||
'nose', | ||
'unittest2', | ||
] | ||
|
||
INSTALL_REQUIRES = [ | ||
] | ||
try: | ||
import argparse # noqa | ||
except ImportError: | ||
INSTALL_REQUIRES.append('argparse') | ||
|
||
SCRIPTS = ['backup.py', 'bitbucket-backup'] | ||
|
||
setup( | ||
name='bitbucket-backup', | ||
version='0.0.1', | ||
author='Sam Kuehn', | ||
author_email='[email protected]', | ||
url='https://github.com/samkuehn/bitbucket-backup', | ||
description='Python script to backup Bitbucket repos', | ||
long_description=__doc__, | ||
packages=find_packages(exclude=('tests', 'tests.*',)), | ||
scripts=SCRIPTS, | ||
zip_safe=False, | ||
extras_require={ | ||
'tests': TEST_REQUIRES, | ||
}, | ||
tests_require=TEST_REQUIRES, | ||
install_requires=INSTALL_REQUIRES, | ||
test_suite='tests', | ||
include_package_data=True, | ||
classifiers=[ | ||
'Intended Audience :: System Administrators', | ||
'Operating System :: OS Independent', | ||
'Topic :: System :: Systems Administrationt', | ||
'Programming Language :: Python', | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup, find_packages | ||
|
||
TEST_REQUIRES = [ | ||
'coverage', | ||
'flexmock', | ||
'nose', | ||
'unittest2', | ||
] | ||
|
||
INSTALL_REQUIRES = [ | ||
] | ||
|
||
SCRIPTS = ['backup.py', 'bitbucket-backup'] | ||
|
||
setup( | ||
name='cosential-compass', | ||
version='0.0.1', | ||
author='NOVO Construction', | ||
author_email='[email protected]', | ||
url='https://github.com/NOVO-Construction/cosential-compass', | ||
description='Python client for Cosential Compass', | ||
long_description=__doc__, | ||
packages=find_packages(exclude=('tests', 'tests.*',)), | ||
scripts=SCRIPTS, | ||
zip_safe=False, | ||
extras_require={ | ||
'tests': TEST_REQUIRES, | ||
}, | ||
license='BSD', | ||
tests_require=TEST_REQUIRES, | ||
install_requires=INSTALL_REQUIRES, | ||
test_suite='tests', | ||
include_package_data=True, | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Operating System :: OS Independent', | ||
'Topic :: Software Development', | ||
'Programming Language :: Python', | ||
], | ||
) |