-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
126 lines (112 loc) · 2.73 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# 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-bench
description = GT4Py Benchmarks
author = ETH Zurich
author-email = [email protected]
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 :: 2 - Pre-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 :: 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 =
click
gt4py
numpy
pydantic
typing_extensions
# 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
tests =
tox~=3.14
pytest
dev =
pre-commit
flake8
flake8-docstrings
flake8-fixme
flake8-rst
flake8-mutable
mypy
sphinx
sphinxcontrib-napoleon
sphinx-rtd-theme
[options.entry_points]
console_scripts =
gtbench4py-convergence-tests = gt4py_benchmarks.scripts.convergence_tests:cli
gtbench4py-benchmark = gt4py_benchmarks.scripts.benchmark:cli
[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
markers =
requires_gpu
slow
#[build_sphinx]
#source_dir = docs
#build_dir = build/sphinx
[flake8]
# Some sane defaults for the code style checker flake8
max-line-length=99
ignore=
E203
W503
exclude =
.tox
build
dist
.eggs
.gt_cache
docs/conf.py