-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (57 loc) · 1.47 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
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dendro_text"
description = "Draw dendrogram of similarity between text files"
authors = [{name = "Toshihiro Kamiya", email = "[email protected]"}]
license = {text = "BSD 2-Clause License"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.16.1",
"scipy",
"pygments",
# matplotlib # for option -p
"tqdm",
]
dynamic = ["version"]
[project.readme]
file = "README-pypi.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/tos-kamiya/dendro_text"
[project.scripts]
dendro-text = "dendro_text.main:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
dendro_text = [
"VERSION",
"Blocks.txt",
]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.dynamic]
version = {file = ["dendro_text/VERSION"]}
[tool.tox.tox]
envlist = "py38, py39, py310, py311, py312"
[tool.gh-actions]
python = """
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312"""
[tool.testenv]
commands = """
python -m unittest discover"""