-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.02 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
from distutils.core import setup
setup(
name = 'Pyppetheater',
packages = ['pyppetheater'],
version = '0.2.20',
license='MIT',
description = 'Functional testing using python and puppeteer',
author = 'Gregoire Penverne',
author_email = '[email protected]',
url = 'https://github.com/gpenverne/pyppettheater',
download_url = 'https://github.com/gpenverne/pyppettheater/archive/master.zip',
keywords = ['puppeteer', 'gherkin', 'test'],
install_requires=[
'pyppeteer',
'asyncio',
'gherkin-parser',
'pyyaml',
'coloredlogs',
'pymysql',
'requests',
'faker'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
scripts=['pyppetheater/pyppet_theater']
)