forked from behalf-oss/behave2cucumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.17 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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
setup(
name="behave2cucumber",
version="2.0.0",
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 :: 3.11",
],
keywords="behave2cucumber setuptools development cucumber behave automation json",
packages=find_packages(),
install_requires=[],
extras_require={},
data_files=[],
entry_points={
"console_scripts": ["behave2cucumber = behave2cucumber.__main__:main"],
},
)