-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
31 lines (30 loc) · 946 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
[metadata]
name = matcomp
version = 0.0.1
author = Vanderlei C. Oliveira Jr.
author_email = [email protected]
description = "Algorithms of Golub and Van Loan (2013), "Matrix computations", 4th ed"
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD 3-Clause License
url = https://github.com/birocoles/matcomp
project_urls =
Bug Tracker = https://github.com/birocoles/matcomp/issues
Source Code = https://github.com/birocoles/matcomp
Release Notes = https://github.com/birocoles/matcomp/releases
classifiers =
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Topic :: Scientific
Programming Language :: Python :: 3
License :: OSI Approved :: BSD 3-Clause License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.7
install_requires =
numpy
scipy
numba
matplotlib