-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
28 lines (25 loc) · 896 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bond_pricing"
version = "0.7.3"
dynamic = ["dependencies"]
authors = [{name = "Jayanth R. Varma", email = "[email protected]"}]
maintainers = [{name = "Jayanth R. Varma", email = "[email protected]"}]
description = "Bond Price with YTM/zero-curve & NPV, IRR, annuities"
readme = "README.md"
license = {text = "OSI Approved :: GNU General Public License v3 (GPLv3)"}
keywords = ["Bond Pricing", "NPV and IRR", "Zero yield curve",
"Annuities and Perpetuities"]
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.0"
[project.urls]
Homepage = "https://github.com/jrvarma/bond_pricing"
[tool.setuptools]
packages = ["bond_pricing"]