forked from nv-legate/cunumeric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (50 loc) · 984 Bytes
/
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
# Copyright (c) 2021-2022, NVIDIA CORPORATION.
[versioneer]
VCS = git
style = pep440
versionfile_source = cunumeric/_version.py
versionfile_build = cunumeric/_version.py
tag_prefix = v
parentdir_prefix = cunumeric-
[flake8]
exclude = __init__.py
ignore =
# line break before binary operator
W503
# whitespace before :
E203
# undefined, or defined from star imports
F405
[isort]
line_length=79
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
order_by_type=True
known_third_party=
numpy
known_legion=
legion_cffi
legion_top
known_first_party=
cunumeric
default_section=THIRDPARTY
sections=FUTURE,STDLIB,THIRDPARTY,LEGION,FIRSTPARTY,LOCALFOLDER
skip=
.eggs
.git
.mypy_cache
.tox
.venv
_build
build
dist
legion
__init__.py
[options]
packages = find:
install_requires =
numpy>=1.22
# TODO: Add rest of install dependencies
python_requires = >=3.9,!=3.9.7