-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
43 lines (36 loc) · 1.02 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]
[tool.poetry]
name = "ctrader_fix"
version = "0.0.0"
homepage = "https://github.com/spotware/cTraderFixPy"
description = "A Python package for interacting with cTrader FIX API"
authors = ["Spotware <connect@spotware.com>"]
documentation = "https://spotware.github.io/cTraderFixPy"
readme = "README.md"
license = "MIT"
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.8"
Twisted = "21.7.0"
[tool.poetry.dev-dependencies]
Twisted = "21.7.0"
[tool.black]
line-length=100
[tool.pylint.reports]
output-format="colorized"
reports="y"
include-ids="yes"
msg-template="{msg_id}:{line:3d},{column}: {obj}: {msg}"
[tool.pytest.ini_options]
addopts = "--cov=ctrader_openApiPy --cov-branch --cov-report term-missing -vv --color=yes --cov-fail-under 100"
python_files = "tests.py test_*.py *_tests.py"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"