forked from rlisagor/freshen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup
setup(
name = "freshen",
version = "0.2",
description = "Clone of the Cucumber BDD framework for Python",
author = "Roman Lisagor",
author_email = "rlisagor+freshen@gmail.com",
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'
],
'console_scripts': [
'freshen-list = freshen.commands:list_steps',
],
},
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",
]
)