forked from behave/behave.example
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
85 lines (78 loc) · 2.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# -*- coding: UTF-8 -*
"""
Setup script for behave.example
USAGE:
python setup.py install
python setup.py behave_test # -- XFAIL on Windows (currently).
"""
import sys
import os.path
HERE0 = os.path.dirname(__file__) or os.curdir
os.chdir(HERE0)
HERE = os.curdir
sys.path.insert(0, os.path.abspath(HERE))
from setuptools import find_packages, setup
# -- PREPARED: from setuptools_behave import behave_test
# -----------------------------------------------------------------------------
# CONFIGURATION:
# -----------------------------------------------------------------------------
description = """\
Some tutorials and examples to explore behave, a BDD test tool for Python.
"""
# -----------------------------------------------------------------------------
# SETUP:
# -----------------------------------------------------------------------------
setup(
name="behave.example",
version="1.2.7",
url="https://github.com/behave/behave.example",
author="Jens Engel",
author_email="Jens_Engel@nowhere.net",
license="BSD",
description= description,
keywords = "utility",
platforms = [ 'any' ],
# -- REQUIREMENTS:
# SUPPORT: python2.7, python3.3 (or higher)
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
install_requires=[
"behave>=1.2.6",
# -- BEHAVE EXAMPLES REQUIRE:
"PyHamcrest>=1.9",
"parse>=1.8.2",
"parse_type>=0.4.2",
"six>=1.11.0",
# -- BEHAVE EXAMPLE DOCS REQUIRE:
# "Sphinx>=1.6,<2.0",
# "sphinx_bootstrap_theme >= 0.4.12",
# "sphinxcontrib-ansi", # >= 0.6",
# "sphinxcontrib-programoutput >=0.8,<0.10.0",
],
include_package_data= True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: behave",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing",
"Topic :: Documentation",
"Topic :: Education",
],
zip_safe = True,
# -- PREPARED:
# cmdclass = {
# "behave_test": behave_test,
# },
)