-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1023 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "extliner"
version = "0.0.10"
description = "A simple command-line tool to count lines in files by extension."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Deepak Raj", email = "deepak008@live.com" }
]
requires-python = ">=3.6"
dependencies = [
"tabulate>=0.9.0",
"tqdm>=4.67.1"
]
keywords = [
"line count",
"file analysis",
"command line tool",
"file extension",
"python",
"CLI",
"file processing"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
[project.urls]
Documentation = "https://extliner.readthedocs.io/en/latest/"
Source = "https://github.com/codeperfectplus/extliner"
Tracker = "https://github.com/codeperfectplus/extliner/issues"
[project.scripts]
extliner = "extliner.cli:main"