-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.95 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
#! /usr/bin/env python
# SPDX-FileCopyrightText: Copyright 2021, Siavash Ameli <sameli@berkeley.edu>
# SPDX-License-Identifier: BSD-3-Clause
# SPDX-FileType: SOURCE
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the license found in the LICENSE.txt file in the root
# directory of this source tree.
[build-system]
build-backend = "mesonpy"
requires = ["meson-python", "cython>=0.29.35"]
[project]
name = "special_functions"
license = {file = "LICENSE.txt"}
readme = "README.rst"
version = "0.3.7"
authors = [
{name = "Siavash Ameli", email = "sameli@berkeley.edu" }
]
description = "Cython and Python API for special functions."
keywords = ['special-functions', 'bessel-function', 'gamma-function']
requires-python = ">=3.8"
classifiers = [
'Programming Language :: Cython',
'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',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
]
# [project.optional-dependencies]
# test = { file = ["./test/requirements.txt"] }
# docs = { file = ["./docs/requirements.txt"] }
[project.urls]
homepage = "https://ameli.github.io/special_functions/"
documentation = "https://ameli.github.io/special_functions/"
source = 'https://github.com/ameli/special_functions/'
download = 'https://github.com/ameli/special_functions/archive/main.zip'
tracker = "https://github.com/ameli/special_functions/issues"