-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
27 lines (25 loc) · 981 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "similarity_ts_cli"
version = "1.0.1"
authors = [
{ name = "Alejandro Fernández-Montes", email = "[email protected]" },
{ name = "Damián Fernández-Cerero", email = "[email protected]" },
{ name = "Felipe Escalera González", email = "[email protected]" },
]
dependencies = ["similarity-ts", "tqdm"]
description = "SimilarityTS-cli is an open-source tool designed to facilitate the usage of SimilarityTS package from a command line interface"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
similarity-ts-cli = "similarity_ts_cli.cli:main"
[project.urls]
"Homepage" = "https://github.com/alejandrofdez-us/similarity-ts-cli"
"Bug Tracker" = "https://github.com/alejandrofdez-us/similarity-ts-cli/issues"