updated project licensing to reflect Nose's licensing: Apache -> LGPL

This commit is contained in:
Kurt Grandis
2010-03-07 23:23:34 -05:00
parent cbdf5febf7
commit 5cfaee0056
2 changed files with 15 additions and 6 deletions

View File

@@ -4,6 +4,8 @@ Overview
nose-exclude is a `Nose`_ plugin that allows you to easily specify
directories to be excluded from testing.
.. _Nose: http://somethingaboutorange.com/mrl/projects/nose
Exclude Directories
===================
@@ -30,7 +32,3 @@ Bugs
====
Please report all bugs (and patches) to http://bitbucket.org/kgrandis/nose-exclude/
References
==========
.. _Nose: http://somethingaboutorange.com/mrl/projects/nose

View File

@@ -5,14 +5,25 @@ f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
VERSION = '0.1.2'
setup(
name = "nose-exclude",
version = "0.1.2",
version = VERSION,
author = "Kurt Grandis",
author_email = "kgrandis@gmail.com",
description = "Exclude specific directories from nosetests runs.",
long_description = long_description,
license = 'Apache License, Version 2.0',
license = 'GNU LGPL',
url = "http://bitbucket.org/kgrandis/nose-exclude",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Library or Lesser General "
"Public License (LGPL)"),
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
],
py_modules = ['nose_exclude'],
package_data = {'':['README.rst']},