Add initial project metafiles

This commit is contained in:
Ethan Paul 2020-09-23 02:17:30 -04:00
parent f4b19b1d02
commit 3b70c051ba
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6
3 changed files with 1192 additions and 0 deletions

1156
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

25
pyproject.toml Normal file
View File

@ -0,0 +1,25 @@
[tool.poetry]
name = "tox-poetry-installer"
version = "0.1.0"
description = "Tox plugin to install Tox environment dependencies using the Poetry backend and lockfile"
authors = ["Ethan Paul <e@enp.one>"]
license = "MIT"
[tool.poetry.plugins.tox]
poetry_installer = "tox_poetry_installer"
[tool.poetry.dependencies]
python = "^3.6"
poetry = "^1.0.10"
pluggy = "^0.13.1"
poetry-semver = "^0.1.0"
requests = "2.22.0"
[tool.poetry.dev-dependencies]
ipython = {version = "^7.18.1", python = "^3.7"}
tox = "^3.20.0"
mypy = "^0.782"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"

11
tox.ini Normal file
View File

@ -0,0 +1,11 @@
[tox]
envlist = py38
isolated_build = true
[testenv]
description = Run the tests (pytest)
deps =
requests
skip_install = true
commands =
pip freeze