diff --git a/README.md b/README.md
index f9a3bc5..9dba768 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Transplanted from [puppeteer-extra-plugin-stealth](https://github.com/berstend/p
## Install
```
-$ pip install playwright_stealth
+$ pip install playwright-stealth
```
## Usage
@@ -26,7 +26,7 @@ stealth_sync(page)
## Test results
-### Pyppeteer without stealth
+### playwright without stealth
@@ -34,7 +34,7 @@ stealth_sync(page)
-### Pyppeteer with stealth
+### playwright with stealth
diff --git a/setup.py b/setup.py
index 2c3b407..c88aad0 100644
--- a/setup.py
+++ b/setup.py
@@ -4,8 +4,8 @@
long_description = fh.read()
setuptools.setup(
- name="playwright_stealth",
- version="1.0.0",
+ name="playwright-stealth",
+ version="1.0.4",
author="ASAS1314",
author_email="lcjasas@sina.com",
description="playwright stealth",
@@ -13,5 +13,10 @@
long_description_content_type="text/markdown",
url="https://github.com/ASAS1314/playwright_stealth",
packages=setuptools.find_packages(),
+ classifiers=[
+ "Programming Language :: Python :: 3",
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: OS Independent",
+ ],
package_data={"playwright_stealth": ["js/*.js"]},
)