-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.81 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=67.4.0,<68.0.0",
"setuptools-scm>=7.1.0,<8.0.0",
"wheel>=0.38.4,<1.0.0",
]
[project]
name="sketch-dask-extension"
authors = [
{name = "YData", email = "[email protected]"},
]
description="Extension to support Dask Dataframes on Sketch"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["data", "sketch", "model", "etl", "automatic", "join", "ai", "embedding", "profiling", "dask", "dataframe"]
classifiers = [
"License :: OSI Approved :: MIT License",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
"dask>=2023.5.0",
"sketch>=0.4.2",
]
dynamic = ["version"]
[project.license]
file = "LICENSE"
[project.urls]
Home = "https://github.com/ydataai/sketch-dask-extension"
[project.optional-dependencies]
dev = [
"pylint==2.15.10",
"black==22.8.0",
"flake8==6.0.0",
"isort==5.11.3",
"pre-commit==2.20.0",
]
packaging = [
"twine",
"build",
"pyc_wheel",
"mypy",
]
[tool.setuptools.dynamic]
version = { attr = "sketch_dask_extension.__version__" }