-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
49 lines (32 loc) · 1.25 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='behave2cucumber',
version='1.0.3',
description='Behave to Cucumber json converter',
long_description='This project helps solving the incompatibilty of Behave\'s genereated json reports '
'to tools using Cucumber json reports. '
'Its done by reformatting the Behave json to Cucumber json.',
url='https://github.com/behalf-oss/behave2cucumber',
author='Andrey Goldgamer, Zvika Messing',
author_email='[email protected], [email protected] ',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='behave2cucumber setuptools development cucumber behave automation json',
packages=find_packages(),
install_requires=[],
extras_require={},
data_files=[],
entry_points={
'console_scripts': [
'behave2cucumber = behave2cucumber.behave2cucumber.__main__:main'
],
},
)