-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.74 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
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydelt"
version = "0.8.0"
description = "Advanced numerical function interpolation and differentiation with universal API, multivariate calculus, window functions, and stochastic extensions"
authors = [
{ name="Michael Harrison Lee", email="leemichael289@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["derivatives", "stochastic-calculus", "numerical-differentiation", "multivariate-calculus", "automatic-differentiation", "interpolation", "financial-modeling", "machine-learning", "gradient", "jacobian", "hessian", "ito-lemma", "stratonovich"]
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"plotly>=5.0.0",
"statsmodels>=0.13.0",
]
[project.urls]
Homepage = "https://github.com/MikeHLee/pydelt"
Documentation = "https://pydelt.readthedocs.io/"
Repository = "https://github.com/MikeHLee/pydelt.git"
Issues = "https://github.com/MikeHLee/pydelt/issues"
Changelog = "https://github.com/MikeHLee/pydelt/blob/main/CHANGELOG.md"
[tool.hatch.build]
exclude = [
"venv/",
"dist/",
"build/",
"*.egg-info/",
"local/",
]