-
Notifications
You must be signed in to change notification settings - Fork 21
/
back
42 lines (36 loc) · 1.02 KB
/
back
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
[tool.poetry]
name = "ejtraderCT"
version = "1.1.1rc0"
description = "Ctrader Fix API"
authors = ["Emerson Pedroso <[email protected]>"]
homepage = "https://github.com/ejtraderLabs/ejtraderCT"
documentation = "https://github.com/ejtraderLabs/ejtraderCT/wiki"
readme = "README.md"
license = "MIT"
classifiers = [
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
]
include = [
"README.md",
"ejtraderCT/api/*",
"requirements.txt",
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
[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=ejtraderCT --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"