-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
93 lines (84 loc) · 2.34 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
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
87
88
89
90
91
92
[project]
name='CyRK'
version = '0.12.1'
description='Runge-Kutta ODE Integrator Implemented in Cython and Numba.'
authors= [
{name = 'Joe P. Renaud', email = '[email protected]'}
]
requires-python = ">=3.8,<3.13"
dependencies = [
'numba >= 0.54.1',
'numpy >= 1.22, <2',
'scipy >= 1.9.3'
]
license = {file = "LICENSE.md"}
readme = "README.md"
keywords = [
'Scientific Computing',
'Runge-Kutta',
'Numerical Integration',
'ODEs',
'Ordinary Differential Equations',
'cython',
'numba',
'Integration'
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
[project.urls]
"Homepage" = "https://github.com/jrenaud90/CyRK"
"Bug Tracker" = "https://github.com/jrenaud90/CyRK/issues"
[project.optional-dependencies]
# As of August, 2023 - the latest version of line_profiler does not track cython functions. Using older vers.
dev = [
"jupyter",
"matplotlib",
"pytest",
"timeit",
"line_profiler==3.5.1"
]
[build-system]
requires = [
'setuptools>=64.0.0',
'numpy >= 1.22, <2',
'cython>=3.0.0',
'wheel>=0.38'
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["_build_cyrk"]
include-package-data = true
[tool.setuptools.packages]
find = {}
[tool.setuptools.cmdclass]
build_py = "_build_cyrk.build_cyrk"
build_ext = "_build_cyrk.build_ext"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -v"
testpaths = [
"Tests"
]
[tool.cibuildwheel]
build = "*"
# Disable building PyPy wheels on all platforms. Also having issue with musllinux.
skip = ["pp*", "*musl*"]
# Having issues with SciPy install during wheel build on 32-bit systems.
archs = ["auto64"]