-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.58 KB
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "market-data-transcoder"
version = "1.0.8"
description = "The Datacast transcoder is a schema-driven, message-oriented utility to simplify the lossless ingestion of common high-performance electronic trading data formats to Google Cloud."
authors = ["Google Cloud FSI Solutions"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/GoogleCloudPlatform/market-data-transcoder"
repository = "https://github.com/GoogleCloudPlatform/market-data-transcoder"
documentation = "https://github.com/GoogleCloudPlatform/market-data-transcoder"
packages = [
{ include = "transcoder" },
{ include = "third_party" }
]
keywords = [
"bigquery", "devops", "json", "automation", "schema", "trading",
"avro", "binary", "transcoding", "pubsub", "fix", "fixprotocol",
"google-cloud-platform", "itch", "sbe", "simple-binary-encoding",
"exchanges", "marketdata", "binaryencoding"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry"
]
[tool.poetry.dependencies]
python = "^3.11"
avro = "1.12.1"
dpkt = "1.9.8"
lxml = "6.0.2"
numpy = "2.4.1"
fastavro = "1.12.1"
six = ">=1.17.0"
google-cloud-pubsub = "2.34.0"
google-cloud-bigquery = "3.40.0"
pyyaml = "6.0.3"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.0"
[tool.poetry.scripts]
txcode = "transcoder.main:main"