-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.12 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
[project]
name = "meatpy"
version = "0.2.8"
description = "Read and process limit order book data"
authors = [
{ name = "Vincent Grégoire", email = "vincent.gregoire@hec.ca" },
{ name = "Charles Martineau", email = "charles.martineau@utoronto.ca" },
]
maintainers = [{ name = "Vincent Grégoire", email = "vincent.gregoire@hec.ca" }]
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.11"
dependencies = ["pyarrow>=18.0.0"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.optional-dependencies]
parquet = ["pyarrow>=10.0.0"]
[project.urls]
Repository = "https://github.com/vgreg/MeatPy"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.2",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocs-autorefs>=0.5.0",
"mkdocs-jupyter>=0.24.0",
"pandas>=2.0.0",
]