forked from heynemann/pyvows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (47 loc) · 1.61 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pyVows testing engine
# https://github.com/heynemann/pyvows
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Bernardo Heynemann [email protected]
from setuptools import setup
from pyvows import version
setup(
name = 'pyVows',
version = version.to_str(),
description = "pyVows is a test engine based in VowsJS(http://vowsjs.org/).",
long_description = """
pyVows is a test engine based in Vows JS and features topic-based testing as well as parallel running of tests.
""",
keywords = 'testing vows test tdd',
author = 'Bernardo Heynemann',
author_email = '[email protected]',
#Contributors
#contributor = 'Rafael Carício',
#contributor_email = '[email protected]',
url = 'http://heynemann.github.com/pyvows/',
license = 'MIT',
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Testing'
],
packages = ['pyvows', 'pyvows.assertions'],
package_dir = {"pyvows": "pyvows"},
install_requires=[
"eventlet",
"colorama",
"lxml",
"argparse"
],
entry_points = {
'console_scripts': [
'pyvows = pyvows.console:main'
],
},
)