-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
49 lines (45 loc) · 1.71 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
import versioneer
import re
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
CURDIR = dirname(abspath(__file__))
with open("README.md", "r", encoding='utf-8') as fh:
LONG_DESCRIPTION = fh.read()
# Get the version from the _version.py versioneer file. For a git checkout,
# this is computed based on the number of commits since the last tag.
VERSION = str(versioneer.get_versions()['version']).split('+')[0]
del versioneer.get_versions
setup(
name="robotframework-PuppeteerLibrary",
version=VERSION,
author="QA Hive Co.,Ltd",
author_email="support@qahive.com",
description="PuppeteerLibrary is a Web Testing library for Robot Framework.",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license="Apache License 2.0",
url='https://qahive.github.io/robotframework-puppeteer.github.io/',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Framework :: Robot Framework",
],
keywords='robotframework puppeteer web-testing automation',
platforms='any',
install_requires=[
'robotframework>=3.2.1',
'playwright==1.22.0',
'pyppeteer==1.0.2',
],
python_requires='>3.6',
# test_suite='nose.collector',
# tests_require=['nose', 'parameterized'],
zip_safe=False,
)