-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (80 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
92 lines (80 loc) · 2.14 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
[build-system]
requires = ["setuptools>=64", "wheel", "versioneer[toml]>=0.22"]
build-backend = "setuptools.build_meta"
[project]
name = "arkouda"
dynamic = ["version"] # <-- Versioneer will supply this
description = "Parallel, distributed NumPy-like arrays backed by Chapel"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "U.S. Government" }]
keywords = ["HPC","workflow","exploratory","analysis","parallel","distribute","arrays","Chapel"]
# keep your dependencies/optional-dependencies blocks here;
# importantly: DO NOT list "versioneer" as a runtime dependency
dependencies = [
"numpy>=2.0",
"pandas>=1.4.0,!=2.2.0",
"pyzmq>=20.0.0",
"typeguard==2.10.0",
"tabulate",
"pyfiglet",
"matplotlib>=3.3.2",
"h5py>=3.7.0",
"types-tabulate",
"tables>=3.10.0",
"pyarrow<21.0.0,>=6.0.1",
"scipy",
"cloudpickle",
]
[project.optional-dependencies]
dev = [
"pexpect",
"pytest>=6.0",
"pytest-env",
"pytest-timeout",
"pytest-html",
"pytest-benchmark>=4.0.0",
"pytest-json-report",
"pytest-subtests",
"Sphinx>=5.1.1",
"sphinx-argparse",
"sphinx-autoapi",
"mypy>=0.931",
"black==25.1.0",
"ruff==0.11.2",
"flake8",
"furo",
"myst-parser",
"linkify-it-py",
"mathjax",
"sphinx-autopackagesummary",
"sphinx-design",
"sphinx-autodoc-typehints",
"pandas-stubs",
"types-python-dateutil",
"ipython",
"pre-commit",
"pydoclint[flake8]==0.6.10",
"numba",
"pytest-cov",
"coverage[toml]",
]
[project.urls]
Homepage = "https://github.com/Bears-R-Us/arkouda"
"Bug Reports" = "https://github.com/Bears-R-Us/arkouda/issues"
Source = "https://github.com/Bears-R-Us/arkouda"
Chapel = "https://chapel-lang.org"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE*", "COPYING*", "NOTICE*", "AUTHORS*"]
[tool.setuptools.packages.find]
where = ["."]
# Versioneer 0.22+ reads config from TOML:
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "arkouda/_version.py"
versionfile_build = "arkouda/_version.py"
tag_prefix = "v" # "" if your tags look like v1.2.3 or 1.2.3; set "v" if needed
parentdir_prefix = "arkouda-"