Metadata-Version: 2.1
Name: drvn.installer
Version: 0.3.0
Summary: UNKNOWN
Home-page: https://github.com/hallgrimur1471/drvn_installer
Author: Hallgrimur David Egilsson
Author-email: hallgrimur1471@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Installer

## Usage

```
drvn_installer --help
```

## Installing

### Installing in editable-mode

```
sudo -H python3.8 -m pip install --editable .
```

### Installing in the usual, non-editable mode

```
python3.8 -m pip install --user drvn.installer
```

## Testing

### Testing prerequisites

```
python3.8 -m pip install --user --upgrade tox
```

### Running all tests

Runs unit- and integration tests using multiple python versions (specified by tox.ini's envlist)

```
tox
```

### Running unit tests

```
tox -e unit
```

### Running integration tests

```
tox -e integration
```

## Uploading

### Uploading to PyPi

```
#
# Make sure python3.8 setuptools.py --version is correct
# (edit version by creating a git tag ..see setuptools_scm)
#
# then:
python3.8 setuptools.py sdist bdist_wheel
twine upload dist/*
```

