-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (28 loc) · 879 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "MorseCodePy"
version = "4.1"
description = "Easily Encode & Decode Morse Code"
dependencies = []
requires-python = ">=3.11"
authors = [{ name = "CrazyFlyKite", email = "[email protected]" }]
readme = "README.md"
license = { file = "license.txt" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities"
]
[project.urls]
Repository = "https://github.com/CrazyFlyKite/MorseCodePy"
Download = "https://pypi.org/project/MorseCodePy"
[options]
packages = ["MorseCodePy"]
include_package_data = true
package_data = { MorseCodePy = ["sounds/*.wav", "codes/*.json"] }
[project.scripts]
morsecodepy = "MorseCodePy.cli:main"