-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "apiminer"
version = "0.1.1"
description = "apiminer is a Python package that handles communications with your miner APIs so you don’t have to."
authors = ["W. Clayton Pannell <[email protected]>"]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "^3.5"
requests = "^2.21"
funcsigs = "^1.0"
[tool.poetry.dev-dependencies]
sphinx = {version = "^2.0",python = "^3.5"}
sphinxcontrib-napoleon = {version = "^0.7.0",python = "^3.5"}
pytest = "^4.4"
pytest-mock = "^1.10"
Black = {version = "^19.3b0",allows-prereleases = true,python = "^3.6"}
codecov = "^2.0"
pytest-cov = "^2.7"
tomlkit = "^0.5.3"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
skipsdist = true
envlist = py35, py36, py37
[testenv]
passenv = CODECOV_TOKEN
whitelist_externals = poetry
skip_install = true
deps = codecov
commands=
poetry install -vvv
poetry run pytest --cov=apiminer/
# poetry run codecov --token $CODECOV_TOKEN
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"