forked from numpy/numpy-financial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (49 loc) · 1.74 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "numpy-financial"
version = "1.1.0.dev0"
description = "Simple financial functions"
license = "BSD-3-Clause"
authors = ["Travis E. Oliphant et al."]
maintainers = ["Numpy Financial Developers <[email protected]>"]
readme = "README.md"
homepage = "https://numpy.org/numpy-financial/latest/"
repository = "https://github.com/numpy/numpy-financial"
documentation = "https://numpy.org/numpy-financial/latest/#functions"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
packages = [{include = "numpy_financial"}]
[tool.poetry.dependencies]
python = "^3.9,<3.12"
numpy = "^1.23"
numba = "^0.58.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0"
numpydoc = "^1.5"
pydata-sphinx-theme = "^0.14.3"
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.6"
[tool.poetry.group.bench.dependencies]
asv = "^0.6.1"