File: pyproject.toml

package info (click to toggle)
python-numpy-groupies 0.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: python: 2,346; makefile: 12
file content (60 lines) | stat: -rw-r--r-- 1,624 bytes parent folder | download
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
[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 = "ml@occam.com.ua"},
    {name = "Daniel Manson", email = "danielmanson.uk@gmail.com"}
]
maintainers = [
    {name = "Deepak Cherian", email = "dcherian@ucar.edu"}
]
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",
    "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"