-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.cfg
63 lines (57 loc) · 1.22 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
[metadata]
name = arrayfire
version = 3.8.0
description = Python bindings for ArrayFire
licence = BSD
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = ArrayFire
maintainer_email = technical@arrayfire.com
url = http://arrayfire.com
classifiers =
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
[options]
packages = find:
install_requires =
scikit-build
python_requires =
>=3.8.0
[options.packages.find]
include = arrayfire
exclude =
examples
tests
install_requires =
numpy~=1.22.0
[options.extras_require]
dev =
autopep8~=1.6.0
isort~=5.10.1
flake8~=4.0.1
flake8-quotes~=3.2.0
mypy~=0.942
test =
pytest~=7.1.2
pytest-cov~=3.0.0
pytest-isort~=3.0.0
pytest-flake8~=1.1.1
pytest-mypy~=0.9.1
[tool:isort]
line_length = 119
multi_line_output = 4
[flake8]
exclude = venv
application-import-names = arrayfire
import-order-style = pep8
inline-quotes = double
max-line-length = 119
[mypy]
exclude = venv
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
show_error_codes = true
warn_return_any = true