-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
68 lines (59 loc) · 1.77 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
67
68
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "numpy-groupies"
description = "Optimised tools for group-indexing operations: aggregated sum and more."
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.txt"}
authors = [
{name = "Michael Löffler", email = "[email protected]"},
{name = "Daniel Manson", email = "[email protected]"}
]
maintainers = [
{name = "Deepak Cherian", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
]
keywords = ["accumarray", "aggregate", "groupby", "grouping", "indexing"]
requires-python = ">=3.9"
dependencies = ["numpy"]
[project.optional-dependencies]
fast = [
"numba",
]
dev = [
"pytest",
"numba",
"pandas",
]
[project.urls]
source = "https://github.com/ml31415/numpy-groupies"
tracker = "https://github.com/ml31415/numpy-groupies/issues"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
honor_noqa = true
[tool.setuptools.packages.find]
include = ["numpy_groupies*"]
[tool.setuptools_scm]
write_to = "numpy_groupies/_version.py"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.codespell]
ignore-words-list = "nd,"
ignore-regex = ".*codespell-ignore$"