-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.03 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
from setuptools import setup
setup(
name = 'pytest-jasmine',
py_modules = ['pytest_jasmine'],
version = '0.0.2',
description = (
'Run jasmine tests from your pytest test suite'
),
author = 'Daniel Wozniak',
description_file = 'README.md',
author_email = 'dan@woz.io',
url = 'https://github.com/dwoz/pytest-jasmine',
download_url = 'https://github.com/dwoz/pytest-jasmine/archive/0.0.2.tar.gz',
bugtrack_url = 'https://github.com/dwoz/pytest-jasmine/issues',
keywords = [
'testing', 'pytest', 'plugin', 'fixture',
],
entry_points = {
'pytest11': [
'jasmine = pytest_jasmine',
]
},
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Framework :: Pytest',
],
install_requires=[
'selenium'
]
)