-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (36 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"hnbex.templates" = ["*.gnuplot"]
[project]
name = "hnbex-cli"
version = "2.1.0"
authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }]
description = "CLI tool for displaying exchange rates for Croatian Kuna"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.7"
keywords=["hnb", "exchange", "rate", "currency"]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = [
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/ihabunek/hnbex-cli"
"Issues" = "https://github.com/ihabunek/hnbex-cli/issues"
[project.scripts]
hnbex = "hnbex.console:main"
[tool.pyright]
include = ["hnbex"]
typeCheckingMode = "strict"
pythonVersion = "3.8"