-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (36 loc) · 1.49 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 = numintegrator
version = 0.0.0
author = Armin Ariamajd
author_email = [email protected]
description = Numerical integrators for solving differential equations.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Armin-Ariamajd/numintegrator
project_urls =
Bug Tracker = https://github.com/Armin-Ariamajd/numintegrator/issues
license = GNU Affero General Public License v3
license_file = LICENSE
platform = any
keywords = numerical integration, integrator, differential equations, ordinary differential equations, ODE, partial differential equations, PDE, initial value problem, Runge–Kutta methods, linear multistep methods, symplectic integrators, Explicit integrator, Implicit integrator, Euler, Verlet, Velocity Verlet, Heun, Leapfrog, Yoshida, Crank-Nicolson, Midpoint rule
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: OS Independent
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Natural Language :: English
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= .
packages = find:
python_requires = >=3.6
install_requires = numpy>=1.17; tqdm
include_package_data = true
[options.packages.find]
where = .