-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.cfg
38 lines (37 loc) · 1.09 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
[metadata]
name = krypy
version = 2.2.0
author = André Gaul
email = [email protected]
description = Krylov subspace methods for linear systems
url = https://github.com/andrenarchy/krypy
project_urls =
Code=https://github.com/andrenarchy/krypy
Issues=https://github.com/andrenarchy/krypy/issues
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Mathematics
[options]
packages = find:
# importlib_metadata can be removed when we support Python 3.8+ only
install_requires =
importlib_metadata
numpy >= 1.11
scipy >= 0.17
python_requires = >=3.6
setup_requires =
setuptools>=42
wheel