-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.89 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (83 loc) · 2.89 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
# Copyright 2015, 2016 Human Longevity, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "disdat"
description = "Disdat: data versioning"
readme = "README.rst"
license = { text = "Apache License, version 2.0" }
authors = [{ name = "Ken Yocum", email = "kyocum@gmail.com" }]
requires-python = ">=3.10,<3.15"
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Natural Language :: English",
]
# Runtime dependencies. Pins modernized for Python 3.10-3.14 wheel support
# (py314 Phase 2). The code changes these floors require — numpy 2.x alias
# removals and the protobuf 5/6 regenerated module — land in py314 Phase 3.
# The local per-context index uses Python's stdlib sqlite3 directly (rm-sqla
# plan); there is no SQLAlchemy dependency.
dependencies = [
"boto3>=1.34,<2.0",
"termcolor>=2.0,<3.0",
"pandas>=2.0,<3.0",
"numpy>=1.24,<3.0",
"protobuf>=6.31.1,<7.0", # floor matches regenerated hyperframe_pb2.py gencode (protoc 6.31.1)
"docutils>=0.18",
]
[project.urls]
Homepage = "https://github.com/kyocum/disdat"
[project.scripts]
dsdt = "disdat.entrypoints.cli_ep:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ipython",
"pylint",
"coverage",
"tox",
"moto",
"s3fs>=2024.2.0", # modern s3fs/aiobotocore; replaces the 2020-era 0.4.2 pin
"pyarrow",
"grpcio-tools", # vendors protoc (python -m grpc_tools.protoc) for hyperframe_pb2 regen
]
rel = [
"build",
"wheel",
]
[tool.setuptools_scm]
version_file = "disdat/version.py"
[tool.setuptools]
# Only ship files declared in package-data below; do not sweep the working
# tree (which previously leaked htmlcov/, docs/, infrastructure/ into wheels).
include-package-data = false
[tool.setuptools.packages.find]
include = ["disdat*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["*.json"]
"disdat" = ["config/disdat/*"]