forked from jasmine/jasmine-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.8 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
from setuptools import setup, find_packages
setup(
name="jasmine",
version="3.4.0",
url="http://jasmine.github.io",
author="Pivotal Labs",
author_email="[email protected]",
description=('Jasmine is a Behavior Driven Development'
' testing framework for JavaScript.'
' It does not rely on browsers, DOM,'
' or any JavaScript framework.'
' Thus it\'s suited for websites, '
'Node.js (http://nodejs.org) projects,'
' or anywhere that JavaScript can run.'),
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
packages=find_packages(),
package_data={'jasmine.templates': ['*.html']},
include_package_data=True,
entry_points={
'console_scripts': [
'jasmine = jasmine.entry_points:begin'
]
},
install_requires=[
'PyYAML>=3.10, <4.0',
'Jinja2>=2.0, <3.0',
'jasmine-core>=3.4.0, <4.0',
'CherryPy>=11',
'selenium>=3.0',
],
)