Repository URL to install this package:
|
Version:
0.1.1 ▾
|
wbcurrency
/
pyproject.toml
|
|---|
[tool.poetry]
name = "wbcurrency"
version = "0.1.1"
description = "Django Project that saves Currencies and provides means to retrieve Exchange Rates."
authors = ["Christopher Wittlinger <c.wittlinger@intellineers.com>"]
packages = [
{include = "currency/**/*.py"},
{include = "currency/**/*.yaml"},
]
[[tool.poetry.source]]
name = 'fury'
url = 'https://pypi.fury.io/intellineers/'
[tool.poetry.dependencies]
python = "^3.6"
wbutils = {version="==0.0.2", index="fury"}
django = "^2.1"
django-filter = "^2.0"
djangorestframework = "^3.9"
requests = "^2.18"
pyyaml = "^3.13"
[tool.poetry.dev-dependencies]
isort = "==4.3.4"
pylint-django = "==2.0.4"
rope = "==0.11.0"
black = "==18.9b0"
pytest = "^3.8"
pytest-cov = "^2.6"
coverage = "^4.5"
pytest-django = "^3.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"