-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.1 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
[project]
name = "npt-promote"
version = "0.3dev0"
description = "Mypy plugin to add type promotions between NumPy and builtin data types."
dependencies = [
"mypy", "numpy>=1.21"
]
requires-python = '>=3.8'
keywords = ["mypy", "typing", "numpy"]
license = {text = 'MIT'}
readme = "README.md"
classifiers = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS',
'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',
]
[project.urls]
Homepage = "https://github.com/pyvista/npt-promote"
[project.optional-dependencies]
dev = ["pytest", "pytest-mypy-plugins", "pre-commit"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = '--mypy-only-local-stub'