-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
184 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include README.MD | ||
include LICENSE | ||
include selenium_dolphin/api.py | ||
include selenium_dolphin/utils.py | ||
include pyanty/api.py | ||
include pyanty/utils.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .selenium_dolphin import * | ||
from .pyanty import * | ||
from .api import DolphinAPI, STABLE_CHROME_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,22 @@ | |
with open('README.md', 'r', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
install_requires = ['requests', 'selenium', 'pyppeteer'] | ||
install_requires = ['requests', 'selenium'] | ||
|
||
if sys.platform == 'win32': | ||
install_requires.append('pywinauto') | ||
|
||
setup( | ||
name='selenium_dolphin', | ||
version='1.0.6', | ||
name='pyanty', | ||
version='1.0.0', | ||
author='Maehdakvan', | ||
author_email='[email protected]', | ||
description='A Python module for controlling Dolphin browser profiles using Selenium/Pyppeteer. It also has a Dolphin API for creating, editing, and deleting profiles.', | ||
description='Python module for controlling Dolphin browser profiles using Selenium, Pyppeteer, and Playwright. Includes Dolphin API for profile management.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/DedInc/selenium_dolphin', | ||
url='https://github.com/DedInc/pyanty', | ||
project_urls={ | ||
'Bug Tracker': 'https://github.com/DedInc/selenium_dolphin/issues', | ||
'Bug Tracker': 'https://github.com/DedInc/pyanty/issues', | ||
}, | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
|