-
Notifications
You must be signed in to change notification settings - Fork 118
/
pyproject.toml
47 lines (41 loc) · 1019 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name="sketch"
description="Compute, store and operate on data sketches"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["data", "sketch", "model", "etl", "automatic", "join", "ai", "embedding", "profiling"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pandas>=1.3.0",
"datasketch>=1.5.8",
"datasketches>=4.0.0",
"ipython",
"lambdaprompt>=0.6.1",
"packaging"
]
urls = {homepage = "https://github.com/approximatelabs/sketch"}
dynamic = ["version"]
[project.optional-dependencies]
local = ["lambdaprompt[local]"]
all = ["sketch[local]"]
[tool.setuptools_scm]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39, py310, py311
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
deps= -rdev-requirements.txt
commands = python -m pytest tests
"""