-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
88 lines (78 loc) · 2.01 KB
/
setup.cfg
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
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = yieldtasks
version = 0.0.1
description = Easy multiprocessing using yield statements
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/WolfLink/ntro
author = Marc Davis
author_email = ...
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development :: Compilers
Typing :: Typed
keywords = multiprocessing
project_urls =
Bug Tracker = https://github.com/WolfLink/ntro/issues
Source Code = https://github.com/WolfLink/ntro
[options]
packages = find:
install_requires =
python_requires = >=3.8, <4
[options.packages.find]
exclude =
tests
examples
[options.extras_require]
dev =
pre-commit
tox
pytest
[bdist_wheel]
universal = 1
[tool:pytest]
minversion = 2.8
testpaths = tests/
python_files = test*.py
norecursedirs = .env
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
allow_redefinition = true
warn_redundant_casts = true
warn_unused_ignores = true
pretty = true
plugins = numpy.typing.mypy_plugin
[tox:tox]
minversion = 3.3.0
envlist = pre-commit,py38,py39,py310,py311
skip_missing_interpreters = true
[testenv]
passenv =
TERM
deps =
pytest>=2.8
commands =
pytest {posargs}
[testenv:pre-commit]
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure