-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (44 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "iso4217parse"
version = "0.5.1"
description = "Parse currencies (symbols and codes) from and to ISO4217."
authors = ["Tammo Ippen <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tammoippen/iso4217parse"
homepage = "https://github.com/tammoippen/iso4217parse"
include = ["tests/*.py", "iso4217parse/*.json", "iso4217parse/*.py", "setup.cfg"]
keywords=['iso4217', 'currency', 'parse', 'symbol']
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
[tool.poetry.dependencies]
python = "~2.7 | ^3.5"
[tool.poetry.dev-dependencies]
coveralls = "^1.5.1"
flake8 = "^3.5.0"
flake8-bugbear = { version = "^18.8.0", python = "^3.5" }
flake8-commas = "^2.0.0"
flake8-comprehensions = "^1.4.1"
flake8-import-order = "^0.18"
flake8-pep3101 = "^1.2.1"
flake8-polyfill = "^1.0.2"
flake8-quotes = "^1.0.0"
funcsigs = { version = "^1.0", python = "~2.7" }
iso3166 = "^0.9.0"
pep8-naming = "^0.7"
pytest = "^3.7.3"
pytest-cov = "^2.5.1"
pytest-flake8 = "^1.0.2"
pytest-pythonpath = "^0.7.3"
six = "^1.11.0"