-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (53 loc) · 1.4 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
54
55
56
57
58
59
60
[tool.poetry]
name = "eventkit"
version = "1.0.3"
description = "Event-driven data pipelines"
authors = ["Ewald R. de Wit"]
license = "BSD"
readme = "README.rst"
homepage = "https://github.com/ib-api-reloaded/eventkit"
repository = "https://github.com/ib-api-reloaded/eventkit"
keywords = ["python", "asyncio", "event", "driven", "data", "pipelines"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
[tool.poetry.dev-dependencies]
ruff = "^0.5.7"
pre-commit = "^3.5.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ib-api-reloaded/eventkit/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = [
"D100",
"D101",
"D102",
"D105",
"D107",
"D200",
"D205",
"D400",
"D401",
"D402",
"E402",
"F401",
]