Skip to content

Commit

Permalink
Merge pull request #10 from CrocoFactory/test
Browse files Browse the repository at this point in the history
Support for python versions from 3.9
  • Loading branch information
blnkoff authored Sep 29, 2024
2 parents 3a4d79a + 012bdd2 commit d32a8f2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@
<a href="https://www.adspower.com"><h1 align="center"><img src="https://raw.githubusercontent.com/CrocoFactory/adspower/main/branding/adspower/banner.png" width="300" style="border-radius:7px;"></h1><br></a>

[![PyPi Version](https://img.shields.io/pypi/v/adspower)](https://pypi.org/project/adspower/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/adspower?label=downloads)](https://pypi.org/project/adspower/)
[![License](https://img.shields.io/github/license/blnkoff/adspower.svg)](https://pypi.org/project/adspower/)
[![Last Commit](https://img.shields.io/github/last-commit/blnkoff/adspower.svg)](https://pypi.org/project/adspower/)
[![Development Status](https://img.shields.io/pypi/status/adspower)](https://pypi.org/project/adspower/)
[![Python versions](https://img.shields.io/pypi/pyversions/adspower?color=%231D4DFF)](https://pypi.org/project/adspower/)
[![PyPi Version](https://img.shields.io/pypi/v/adspower?color=%231D4DFF)](https://pypi.org/project/adspower/)


The package for interacting with API of anti-detect browser [AdsPower](https://www.adspower.com).

- **[Overview](#quick-start)**
- **[Installing](#installing-adspower)**
- **[Bug reports](https://github.com/blnkoff/adspower/issues)**
- **[Bug reports](https://github.com/CrocoFactory/adspower/issues)**

The project is made by the **[Croco Factory](https://github.com/CrocoFactory)** team

Expand Down
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = 'adspower'
version = '2.0.3.post2'
version = '2.1.0'
description = 'The package for interacting with API of anti-detect browser AdsPower.'
authors = ['Alexey <[email protected]>']
license = 'MIT'
Expand All @@ -11,16 +11,20 @@ classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
'Typing :: Typed'
]
packages = [{ include = 'adspower' }]

[tool.poetry.dependencies]
python = '^3.11'
python = '^3.9'
httpx = "^0.27.0"
selenium = {version = "^4.16.0", optional = true}
playwright = {version = "^1.42.0", optional = true}
Expand All @@ -33,8 +37,6 @@ playwright = ["playwright"]
pytest = "^7.4.3"
twine = "^4.0.2"
build = "^1.0.3"
sphinx-rtd-theme = "^2.0.0"
sphinx = "^7.2.6"
faker = "^24.9.0"
pytest-asyncio = "^0.23.6"

Expand Down

0 comments on commit d32a8f2

Please sign in to comment.