Metadata-Version: 2.1
Name: pomace
Version: 0.1a2
Summary: Dynamic page objects for browser automation.
Home-page: https://pypi.org/project/pomace
License: MIT
Author: Jace Browning
Author-email: jacebrowning@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: bullet (>=2.1.0,<3.0.0)
Requires-Dist: cleo (>=0.7.6,<0.8.0)
Requires-Dist: datafiles (>=0.8b1,<0.9.0)
Requires-Dist: minilog (>=1.4,<2.0)
Requires-Dist: parse (>=1.14.0,<2.0.0)
Requires-Dist: splinter (>=0.13.0,<0.14.0)
Requires-Dist: webdriver_manager (>=1.8.2,<2.0.0)
Project-URL: Documentation, https://pomace.readthedocs.io
Project-URL: Repository, https://github.com/jacebrowning/pomace
Description-Content-Type: text/markdown

# Overview

Dynamic page objects for browser automation.

This project was generated with [cookiecutter](https://github.com/audreyr/cookiecutter) using [jacebrowning/template-python](https://github.com/jacebrowning/template-python).

[![Unix Build Status](https://img.shields.io/travis/jacebrowning/pomace/develop.svg?label=unix)](https://travis-ci.org/jacebrowning/pomace)
[![Windows Build Status](https://img.shields.io/appveyor/ci/jacebrowning/pomace/develop.svg?label=window)](https://ci.appveyor.com/project/jacebrowning/pomace)
[![Coverage Status](https://img.shields.io/coveralls/jacebrowning/pomace/develop.svg)](https://coveralls.io/r/jacebrowning/pomace)
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/jacebrowning/pomace.svg)](https://scrutinizer-ci.com/g/jacebrowning/pomace/?branch=develop)
[![PyPI Version](https://img.shields.io/pypi/v/pomace.svg)](https://pypi.org/project/pomace)
[![PyPI License](https://img.shields.io/pypi/l/pomace.svg)](https://pypi.org/project/pomace)

# Setup

## Requirements

- Python 3.8+

## Installation

Install it directly into an activated virtual environment:

```text
$ pip install pomace
```

or add it to your [Poetry](https://poetry.eustace.io/) project:

```text
$ poetry add pomace
```

# Usage

After installation, the package can imported:

```text
$ python
>>> import pomace
>>> pomace.__version__
```

