forked from differint/differint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.03 KB
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"
[project]
name = "differintP"
version = "0.0.4"
description = "Modern, pure Python fractional calculus library (fork of differint)"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "iparsw", email = "parsaroshanak@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
# Add your runtime dependencies here, example:
"numpy>=1.19",
"scipy>=1.15.3",
"numba>=0.61.2"
]
[project.optional-dependencies]
gpu = [
"cupy"
]
[project.urls]
Homepage = "https://github.com/iparsw/differintP"
Repository = "https://github.com/iparsw/differintP"
Issues = "https://github.com/iparsw/differintP/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["differintP*"]