-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bonbast"
version = "1.0.2"
description = "Get currencies exchange rates for IRR from Bonbast.com"
readme = "README.md"
authors = [
{ name = "Amir Hossein SamadiPour", email = "samadipoor2@gmail.com" },
{ name = "Alireza Azadi", email = "alireza_azadi@hotmail.com" },
{ name = "Iliya Aghamajidi", email = "dozheiny@gmail.com" },
{ name = "Parsa Shahmaleki", email = "parsampsh@gmail.com" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["bonbast", "IRR Exchange rates"]
dependencies = [
"requests >= 2.28.0",
"rich >= 12.4.4",
"beautifulsoup4 >= 4.11.1",
"bs4",
"click >= 8.1.3",
]
requires-python = ">=3.7"
[project.optional-dependencies]
build = ["build", "twine", "bumpver"]
[project.scripts]
bonbast = "bonbast.__main__:run"
[project.urls]
repository = "https://github.com/SamadiPour/bonbast"
#documentation = ""
[tool.bumpver]
current_version = "1.0.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"src/bonbast/__init__.py" = [
'bonbast_version = "{version}"',
]