forked from behave/behave
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
46 lines (42 loc) · 1.56 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
import sys
from setuptools import find_packages, setup
requirements = ['parse>=1.6']
zip_safe = True
major, minor = sys.version_info[:2]
if major == 2 and minor < 7:
requirements.append('argparse')
if major == 2 and minor < 6:
requirements.append('simplejson')
description = ''.join(open('README.rst').readlines()[6:])
setup(
name='behave-parallel',
version='1.2.2.16',
description='behave is behaviour-driven development, Python style',
long_description=description,
author='Benno Rice and Richard Jones',
author_email='[email protected]',
url='http://github.com/behave/behave',
packages=find_packages(exclude=["test", "test.*"]),
entry_points={
'console_scripts': ['behave = behave.__main__:main'],
},
install_requires=requirements,
use_2to3=True,
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: BSD License",
],
)