Metadata-Version: 2.4
Name: nextdrawcore
Version: 1.5.0
Summary: Driver for Bantam Tools NextDraw Pen Plotter
Home-page: https://github.com/bantamtools
Author: Bantam Tools
Author-email: hello@bantamtools.com
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
Requires-Dist: lxml>=5.3.0
Requires-Dist: ink-extensions>=2.1.0
Requires-Dist: requests>=2.31.0
Requires-Dist: packaging>=21.0
Requires-Dist: plotink>=1.12.0
Requires-Dist: pyclipper>=1.3.0.post6
Requires-Dist: tqdm>=4.64.0
Provides-Extra: dev
Requires-Dist: coverage; extra == "dev"
Requires-Dist: mock; extra == "dev"
Provides-Extra: test
Requires-Dist: mock; extra == "test"
Provides-Extra: hershey
Requires-Dist: hersheyadvanced; extra == "hershey"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# nextdraw-core

![alt text](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/berleant/3bf8211c2f44ae64fd4f482e45592b24/raw/fc9f2c2dac374e1333627687169a747161c5fc07/nextdraw-core-cobertura-coverage.json)

This repository contains documentation for nextcli and pynextdraw as well as the internal source used by nextcli.

See the README files docs/nextcli and docs/pynextdraw.

Installation
===========

Clone the repository.

```
pip install .
```

For testing:
```
git install .['test']
```

For development:
```
git install .['dev']
```

If you wish to use hershey-related functions (e.g. merge), set your HERSHEYADVANCED_DEPLOY_USER, and HERSHEYADVANCED_DEPLOY_PASS environment variables, then:

```
pip install -r requirements/hershey.txt # did you set the environment variables?
```

To upgrade all the dependencies to their latest version (recommended)

```
pip install . -upgrade-strategy eager --upgrade
```
