-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import find_packages
from setuptools import setup
long_description = open("README.md", encoding="utf-8").read()
description = "PlaywrightSafeThread"
version = "0.5.5"
setup(
name="PlaywrightSafeThread",
version=version,
license="MIT License",
author="Ammar Alkotb",
author_email="[email protected]",
description=description,
packages=find_packages(),
url="https://github.com/3mora2/PlaywrightSafeThread",
project_urls={"Bug Report": "https://github.com/3mora2/PlaywrightSafeThread/issues/new"},
install_requires=[
"playwright",
"playwright-stealth",
"psutil",
],
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "."},
# package_data={"PlaywrightSafeThread": ["*.md"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)