-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
50 lines (46 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "npx"
version = "0.1.6"
authors = [{name = "Nico Schlömer", email = "[email protected]"}]
description = "Some useful extensions for NumPy"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
requires-python = ">=3.7"
dependencies = [
"numpy >= 1.20.0",
# "scipy >= 1.8",
]
[project.urls]
Code = "https://github.com/sigma-py/npx"
Issues = "https://github.com/sigma-py/npx/issues"
[tool.ruff]
src = ["src", "tests"]
line-length = 88
select = ["ALL"]
ignore = [
"ANN", "S101", "D", "T201", "ERA", "N803", "PLR2004"
# "ANN", "C901", "D", "E741", "ERA", "FBT", "INP001",
# "N", "PLR", "S101", "T201", "TID252", "TD", "FIX002"
]
target-version = "py38"
[tool.mypy]
ignore_missing_imports = true