updating authors, housecleaning, begin migration to github

This commit is contained in:
Kurt Grandis 2015-06-24 01:13:24 -04:00 committed by Kurt Grandis
parent ea66919acf
commit 583c2d5aa0
6 changed files with 52 additions and 18 deletions

41
.gitignore vendored Normal file
View File

@ -0,0 +1,41 @@
# Created by https://www.gitignore.io
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

View File

@ -1,9 +0,0 @@
acfda89f26ab914f2d9f1242b8c5c49560804c20 0.1.6
bd49ff1961c3a163a3b4120912da7d40ff88b317 0.1.7
bd49ff1961c3a163a3b4120912da7d40ff88b317 0.1.7
265073bf4a4ec232637551bbd124550dad9165c2 0.1.7
313dea58cea33328a7cc7ec92fd976095cdbc0ea 0.1.8
313dea58cea33328a7cc7ec92fd976095cdbc0ea 0.1.8
1f9ee38dfec91980ca113b2683662e32e12a83dc 0.1.8
1f9ee38dfec91980ca113b2683662e32e12a83dc 0.1.8
1d0f0220ecf7ca695ed19fe4d75bb67023a7a239 0.1.8

View File

@ -8,3 +8,4 @@ Contributors
* Piotr Husiatyński
* Joe Friedl
* Radu Voicilas
* Victor Stinner

View File

@ -1,6 +1,6 @@
nose-exclude is a Nose plugin that allows you to easily specify directories to be
excluded from testing.
Copyright (C) 2010-2011 Kurt Grandis
Copyright (C) 2010-2015 Kurt Grandis
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public

View File

@ -15,16 +15,16 @@ plugin. The option may be used multiple times to exclude multiple directories
from testing. The directory paths provided may be absolute or relative.
Example::
$ nosetests --exclude-dir=test_dirs/build \
--exclude-dir=test_dirs/test_not_me test_dirs
....
----------------------------------------------------------------------
Ran 4 tests in 0.006s
OK
This example will exclude the directories test_dirs/build and
This example will exclude the directories test_dirs/build and
test_dirs/test_not_me from nosetests' test searching.
Using File-Based Exclusion List
@ -35,13 +35,13 @@ list of directories contained within a file. ``nose-exclude`` expects each
directory to be excluded to be on its own line.
Example::
$ nosetests --exclude-dir-file=test_dirs/exclude_dirs.txt \
test_dirs
....
----------------------------------------------------------------------
Ran 4 tests in 0.006s
OK
where ``exclude_dirs.txt`` might look like: ::
@ -94,5 +94,6 @@ separate their values with newlines using the same configuration key: ::
Bugs
====
Please report all bugs (and patches) to http://bitbucket.org/kgrandis/nose-exclude/
Please report all bugs (and patches) to https://github.com/kgrandis/nose-exclude/
NOTE: The previous bitbucket repository is no longer actively maintained.

View File

@ -9,7 +9,7 @@ from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
VERSION = '0.2.0'
VERSION = '0.3.0'
setup(
name = "nose-exclude",
@ -19,7 +19,7 @@ setup(
description = "Exclude specific directories from nosetests runs.",
long_description = read('README.rst'),
license = 'GNU LGPL',
url = "http://bitbucket.org/kgrandis/nose-exclude",
url = "https://github.com/kgrandis/nose-exclude",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",