Skip to content

Commit a2509a8

Browse files
authored
Merge pull request #12 from LambdaTest/stage
added description
2 parents 058555f + 36a951d commit a2509a8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

selenium/setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
from setuptools import setup, find_packages
2+
from os import path
3+
4+
cwd = path.abspath(path.dirname(__file__))
5+
with open(path.join(cwd, 'README.md'), encoding='utf-8') as f:
6+
long_description = f.read()
27

38
setup(
49
name="lambdatest-selenium-driver",
510
version="1.0.0",
611
author="LambdaTest <[email protected]>",
712
description="Python Selenium SDK for testing with Smart UI",
8-
long_description=open('README.md').read(),
13+
long_description=long_description,
914
long_description_content_type="text/markdown",
1015
url="https://github.com/LambdaTest/lambdatest-python-sdk",
1116
keywords="lambdatest python selenium sdk",

0 commit comments

Comments
 (0)