-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.56 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
52
53
[project]
name = "curo"
description = "A feature-rich library for performing simple to advanced instalment credit financial calculations."
version = "1.0.0"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Andrew Murphy" }]
keywords = ["finance", "hire purchase", "lease", "loan", "calculator", "apr", "irr", "xirr"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"numpy>=2.4.0",
"pandas>=2.3.3",
"python-dateutil>=2.9.0.post0",
"scipy>=1.16.3",
]
[project.urls]
documentation = "https://andrewmurphy353.github.io/curo_python/"
source = "https://github.com/andrewmurphy353/curo_python.git"
changelog = "https://github.com/andrewmurphy353/curo_python/blob/main/CHANGELOG.md"
issues = "https://github.com/andrewmurphy353/curo_python/issues"
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"coverage>=7.13.0",
"twine>=6.2.0", # Required for makefile
"toml>=0.10.2", # Required for scripts/extract_version.py
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocstrings>=1.0.0",
"mkdocstrings-python>=2.0.1",
"pymdown-extensions>=10.20",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["curo", "curo.*"]
[tool.pytest.ini_options]
python_files = ["test_*.py"]
testpaths = ["tests"]