-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.18 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
[project]
name = "fast-stats"
version = "1.3.2"
description = "A fast and simple library for calculating basic statistics"
readme = "README.md"
license = {text="Apache 2.0"}
keywords = ["numpy", "stats", "rust", "fast"]
authors = [
{email = "[email protected]"},
{name = "Zach Coleman"}
]
homepage = "https://github.com/zachcoleman/fast-stats"
repository = "https://github.com/zachcoleman/fast-stats"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
]
[project.urls]
repository = "https://github.com/zachcoleman/fast-stats"
[project.optional-dependencies]
dev = [
"bump2version",
"dictdiffer",
"pre-commit",
"pytest",
"pytest-cov[all]"
]
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
strip = true
[tool.isort]
profile="black"
[tool.bandit]
exclude_dirs=["tests"]