-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 938 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
29
30
31
32
[project]
name = "txt2mrs"
dynamic = ["version"]
description = "txt2mrs encoding/decoding library"
authors = [{ name = "Roman Babenko", email = "[email protected]" }]
requires-python = ">=3.8"
dependencies = ["simpleaudio"]
readme = "README.md"
keywords = ["morse", "sound", "text"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/babenek/txt2mrs"
"Bug Tracker" = "https://github.com/babenek/txt2mrs/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/txt2mrs/__init__.py"
[project.scripts]
txt2mrs = "txt2mrs.__main__:main"