-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (38 loc) · 1.41 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
[build-system]
requires = ["setuptools", "setuptools_scm", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta:__legacy__"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template= "{tag}.beta{ccount}"
dirty_template = "{tag}.alpha{ccount}+dirty"
starting_version = "v0.0.2"
branch_formatter= "util:format_branch_name"
tag_formatter = "util:format_tag_name"
[project]
name = "timevalue"
dynamic = ["version"]
description = "A python package for time money value calculations, annuity and perpetuity"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["analytics", "investing", "finance"]
authors = [{name = "Meek Msaki", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
maintainers = [
{name = "Meek Msaki", email= "[email protected]"},
]
[project.scripts]
present = "timevalue.present:main"
future = "timevalue.future:main"
annuity = "timevalue.annuity:main"
[project.urls]
"Homepage" = "https://github.com/mmsaki/timevalue"
"Bug Tracker" = "https://github.com/mmsaki/timevalue/issues"
repository = "https://github.com/mmsaki/timevalue.git"
changelog = "https://github.com/mmsaki/timevalue/blob/master/CHANGELOG.md"