-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.75 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=45", "setuptools-scm[toml]>=6.2", "wheel" ]
[project]
name = "hsnf"
description = "Computing Hermite normal form and Smith normal form."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Kohei Shinohara" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = [ "version" ]
dependencies = [
"numpy>=1.20.1",
"scipy",
"setuptools",
"setuptools-scm",
"wheel",
]
optional-dependencies.dev = [
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
]
optional-dependencies.docs = [
"myst-parser",
"sphinx",
"sphinx-autobuild",
"sphinx-book-theme",
"sphinxcontrib-bibtex",
]
urls.Documentation = "https://hsnf.readthedocs.io/en/latest/"
urls.Homepage = "https://github.com/lan496/hsnf"
urls.Repository = "https://github.com/lan496/hsnf"
[tool.setuptools]
package-data.hsnf = [ "py.typed" ]
packages.find.exclude = [ "tests" ]
[tool.setuptools_scm]
[tool.ruff]
line-length = 99
exclude = [ "docs" ]
lint.select = [ "B", "C", "E", "F", "I", "UP", "W" ]
lint.ignore = [ "E203", "E231", "E501" ]
[tool.mypy]
exclude = [
"docs",
]
[tool.pytest]
ini_options.testpaths = [ "tests" ]
[tool.coverage]
run.omit = [ "tests/" ]