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.
1 parent 1f3fa95 commit 9288389Copy full SHA for 9288389
setup.py
@@ -1,5 +1,9 @@
1
+from pathlib import Path
2
from setuptools import setup
3
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "ReadMe.md").read_text()
6
+
7
setup(
8
name='python-a11y-playwright',
9
version='1.0.1',
@@ -12,5 +16,7 @@
12
16
author='Sridhar Bandi',
13
17
author_email='sridhar.bandi.ece@gmail.com',
14
18
description='Automate Web Accessibility Testing using AXE/HTMLCS with Playwright Python',
15
- install_requires=['marshmallow-dataclass', 'marshmallow']
19
+ install_requires=['marshmallow-dataclass', 'marshmallow'],
20
+ long_description=long_description,
21
+ long_description_content_type='text/markdown'
22
)
0 commit comments