-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 915 Bytes
/
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
from setuptools import setup, find_packages
import web_playground
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='web-playground',
version=web_playground.__version__,
author='Luciano Renzi',
author_email='[email protected]',
description='Demo web application for testing purposes',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/golemhq/web-playground',
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask',
],
entry_points={
'console_scripts': [
'web-playground = web_playground.run:main'
]
},
keywords='test automation selenium webdriver web web-playground',
classifiers=[
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Software Development :: Testing'
]
)