-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
86 lines (78 loc) · 1.75 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
[metadata]
name = numbakit-ode
version = 0.6.dev0
author = Hernan E. Grecco
author_email = [email protected]
license = BSD
description = ODE solvers usable f
long_description = file: README.rst
keywords = ODE, numba, science
url = https://github.com/hgrecco/numbakit-ode
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = nbkode
zip_safe = True
include_package_data = True
python_requires = >=3.7
install_requires =
packaging
importlib-metadata; python_version < '3.8'
numba>=0.49
numpy
scipy
setup_requires =
setuptools
setuptools_scm
test_suite = nbkode.testsuite
[options.extras_require]
test =
pytest
pytest-mpl
pytest-cov
pytest-subtests
asv
[check-manifest]
ignore =
.travis.yml
[bdist_wheel]
universal = 1
[build-system]
requires =
setuptools
setuptools_scm
wheel
[flake8]
ignore=
# whitespace before ':' - doesn't work well with black
E203
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
per-file-ignores =
# imported but unused
__init__.py: F401
exclude=
build
.asv
tmp
[isort]
profile=black
default_section=THIRDPARTY
known_first_party=nbkode