forked from rlisagor/freshen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.47 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup
install_requires = [
'pyparsing>=1.5.0',
'PyYAML',
'nose>=0.11.1',
'six'
]
try:
import importlib
except ImportError:
install_requires.append('importlib')
setup(
name="fresher",
version="0.4.2",
description=("Clone of the Cucumber BDD framework for Python forked "
"from Freshen"),
author="Louis-Dominique Dubeau",
author_email="[email protected]",
url="http://github.com/lddubeau/fresher",
license="GPL",
packages=["fresher", "fresher.test"],
package_data={'fresher': ['languages.yml']},
install_requires=install_requires,
entry_points={
'nose.plugins.0.10': [
'fresher = fresher.noseplugin:FresherNosePlugin',
'freshererr = fresher.noseplugin:FresherErrorPlugin'
],
'console_scripts': [
'fresher-list = fresher.commands:list_steps',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
)