We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 058555f + 36a951d commit a2509a8Copy full SHA for a2509a8
selenium/setup.py
@@ -1,11 +1,16 @@
1
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()
7
8
setup(
9
name="lambdatest-selenium-driver",
10
version="1.0.0",
11
author="LambdaTest <[email protected]>",
12
description="Python Selenium SDK for testing with Smart UI",
- long_description=open('README.md').read(),
13
+ long_description=long_description,
14
long_description_content_type="text/markdown",
15
url="https://github.com/LambdaTest/lambdatest-python-sdk",
16
keywords="lambdatest python selenium sdk",
0 commit comments