-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (44 loc) · 1 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cloud-dataplug"
version = "1.0.0"
authors = [
{ name = "Aitor Arjona", email = "[email protected]" },
]
description = "Pluggable data partitioning for cloud-native scientific workloads"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha"
]
dependencies = [
"boto3",
"botocore",
"numpy",
"pandas",
"pyarrow",
"smart_open",
"tqdm",
"joblib",
]
[project.optional-dependencies]
metabolomics = [
"pyimzml"
]
geospatial = [
"laspy",
"PDAL"
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["dataplug*"]
[tool.black]
line-length = 119
[project.urls]
"Homepage" = "https://github.com/CLOUDLAB-URV/dataplug"