Skip to content

Commit 9288389

Browse files
committed
Include ReadMe
1 parent 1f3fa95 commit 9288389

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
from pathlib import Path
12
from setuptools import setup
23

4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "ReadMe.md").read_text()
6+
37
setup(
48
name='python-a11y-playwright',
59
version='1.0.1',
@@ -12,5 +16,7 @@
1216
author='Sridhar Bandi',
1317
author_email='sridhar.bandi.ece@gmail.com',
1418
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'
1622
)

0 commit comments

Comments
 (0)