-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.13 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "pyhamsys"
version = "0.60"
license = {file = "LICENSE"}
keywords = ["Hamiltonian", "symplectic integrators", "ODE solver"]
authors = [
{name="Cristel Chandre", email="cristel.chandre@cnrs.fr"},
]
maintainers = [
{name="Cristel Chandre", email="cristel.chandre@cnrs.fr"},
]
description = "Some tools for Hamiltonian systems"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy"
]
dependencies = [
"numpy",
"sympy",
"scipy",
"scikit-learn",
"matplotlib"
]
[project.urls]
Homepage = "http://github.com/cchandre/pyhamsys"
GitHub = "http://github.com/cchandre/pyhamsys"