-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (82 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
95 lines (82 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "dvx"
description = "Minimal data version control - a lightweight wrapper around DVC"
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "Ryan Williams", email = "ryan@runsascoded.com" }]
keywords = ["data", "version-control", "dvc", "machine-learning", "reproducibility"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Version Control",
]
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"click>=8.0",
"dffs>=0.1.1",
"dvc>=3.50",
"dvc-data @ git+https://github.com/runsascoded/dvc-data.git@9d3ef02c2c1e6752f897d2885f467d12fe934646",
]
[project.optional-dependencies]
# Storage backends - install as needed
s3 = ["dvc-s3"]
gs = ["dvc-gs"]
azure = ["dvc-azure"]
ssh = ["dvc-ssh"]
hdfs = ["dvc-hdfs"]
webdav = ["dvc-webdav"]
webhdfs = ["dvc-webhdfs"]
oss = ["dvc-oss"]
# All remotes
all = [
"dvc-s3",
"dvc-gs",
"dvc-azure",
"dvc-ssh",
"dvc-hdfs",
"dvc-webdav",
"dvc-webhdfs",
"dvc-oss",
]
# Development
dev = [
"pytest>=7",
"pytest-cov",
"ruff",
"mypy",
]
[project.scripts]
dvx = "dvx.cli:main"
[project.urls]
Homepage = "https://github.com/runsascoded/dvx"
Repository = "https://github.com/runsascoded/dvx"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/dvx/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/dvx"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]