-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 740 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from jasmine_runner import __version__
README = open('README.rst').read()
setup(name='jasmine-splinter-runner',
version=__version__,
description='jasmine runner based on splinter',
long_description=README,
author='CobraTeam',
author_email='francisco@franciscosouza.net',
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
install_requires=['argparse>=1.2.1,<1.3.0', 'splinter>=0.4.3,<0.8.0', 'termcolor>=1.1.0,<1.2.0'],
tests_require=['nose', 'mocker'],
entry_points = {
'console_scripts' : [
'jasmine-splinter = jasmine_runner.commands:main',
]
},
)