forked from GridTools/gt4py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
108 lines (96 loc) · 2.54 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = gt4py
author = ETH Zurich
author-email = [email protected]
description = Python API to develop performance portable applications for weather and climate
license = gpl3
license_files = LICENSE.txt
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
url = https://gridtools.github.io/
project_urls =
Source Code = https://github.com/GridTools/gt4py
platforms = Linux, Mac
# From: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Atmospheric Science
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
packages = find:
package_dir =
=src
include_package_data = True
python_requires = >= 3.6
install_requires =
attrs~=19.1
black~=19.3b0
hypothesis>=4.14,<=4.37.0
jinja2~=2.10
numpy~=1.15
pybind11~=2.4
pytest~=4.3.0
# The usage of test_requires is discouraged, see `Dependency Management` docs
# tests_require = pytest; pytest-cov
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install gt4py[cuda90]` like:
cuda =
cupy
cuda90 =
cupy-cuda90
cuda91 =
cupy-cuda91
cuda92 =
cupy-cuda92
cuda100 =
cupy-cuda100
cuda101 =
cupy-cuda101
testing =
tox~=3.14
[test]
# py.test options when running `python setup.py test`
# addopts = --verbose
extras = True
[tool:pytest]
# Options for py.test:
# Specify command line options as you would do when invoking py.test directly.
norecursedirs =
dist
build
.tox
testpaths = tests
[build_sphinx]
source_dir = docs
build_dir = build/sphinx
warning-is-error = True
[flake8]
# Some sane defaults for the code style checker flake8
max-line-length = 99
exclude =
.tox
build
dist
.eggs
docs/conf.py
[mypy]
follow_imports = skip
ignore_missing_imports = True