forked from rlisagor/freshen
-
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.
Updated setup.py for release to PyPI
- Loading branch information
Showing
2 changed files
with
26 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include README.rst *.txt LICENSE MANIFEST.in | ||
include freshen/languages.yml | ||
recursive-include examples *.feature *.py *.textile | ||
recursive-include features *.feature *.py *.textile | ||
recursive-include other_tests *.feature *.py *.textile | ||
|
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 |
---|---|---|
|
@@ -7,22 +7,29 @@ | |
from setuptools import setup | ||
|
||
setup( | ||
name='Freshen plugin', | ||
install_requires=['pyparsing>=1.5.0', 'PyYAML'], | ||
version='0.2', | ||
author='Roman Lisagor', | ||
author_email = '[email protected]', | ||
description = 'Freshen - clone of the Cucumber BDD framework', | ||
license = 'GNU GPL', | ||
py_modules = ['freshen'], | ||
packages = ['freshen'], | ||
data_files = [('freshen', ['freshen/languages.yml'])], | ||
name = "freshen", | ||
version = "0.2", | ||
description = "Clone of the Cucumber BDD framework for Python", | ||
author = "Roman Lisagor", | ||
author_email = "[email protected]", | ||
url = "http://github.com/rlisagor/freshen", | ||
license = "GPL", | ||
packages = ["freshen"], | ||
package_data = {'freshen': ['languages.yml']}, | ||
install_requires=['pyparsing>=1.5.0', 'PyYAML', 'nose>=0.11.1'], | ||
entry_points = { | ||
'nose.plugins.0.10': [ | ||
'freshen = freshen.noseplugin:FreshenNosePlugin', | ||
'freshenerr = freshen.noseplugin:FreshenErrorPlugin' | ||
] | ||
} | ||
|
||
) | ||
}, | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: GNU General Public License (GPL)", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development :: Testing", | ||
] | ||
) | ||
|