-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1016 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 1016 Bytes
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
[project]
name = "entropy-data"
version = "0.3.0"
description = "CLI for Entropy Data"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"typer>=0.15.0,<1.0",
"rich>=14.0,<16.0",
"pydantic>=2.10,<3.0",
"requests>=2.32,<3.0",
"tomli_w>=1.0,<2.0",
"pyyaml>=6.0,<7.0",
"python-dotenv>=1.0,<2.0",
]
[project.urls]
Homepage = "https://entropy-data.com"
Documentation = "https://docs.entropy-data.com"
Repository = "https://github.com/entropy-data/entropy-data-cli"
[project.scripts]
entropy-data = "entropy_data.cli:app"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"responses>=0.25",
"ruff>=0.8",
"pre-commit>=3.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/entropy_data"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
testpaths = ["tests"]