-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (24 loc) · 905 Bytes
/
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
# -- HINT:
# Original author: Alex Rudakov <ribozz@gmail.com>
# Original package from: https://github.com/ribozz/behave-pytest
import setuptools
setuptools.setup(
name="behave-pytest",
version="0.1.2dev0",
url="https://github.com/behave-contrib/behave-pytest",
author="Alex Rudakov",
author_email="ribozz@gmail.com",
description="Integrates pytest asserts with behave",
long_description='Small utility package to integrate pytest asserts into Behave project.',
packages=setuptools.find_packages(),
install_requires=['pytest', 'behave'],
license="BSD",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)