Skip to content

Commit

Permalink
Updated setup.py for release to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
rlisagor committed May 14, 2010
1 parent 7366074 commit b15fef0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
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

33 changes: 20 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
)

0 comments on commit b15fef0

Please sign in to comment.