Skip to content

Commit 280831a

Browse files
committed
add pyproject.toml and remove requirements.txt
1 parent 9546223 commit 280831a

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[project]
2+
name = "scat"
3+
version = "1.0.0"
4+
authors = [
5+
{ name="Shinjo Park", email="peremen@gmail.com" },
6+
]
7+
description = "Signaling Collection and Analysis Tool"
8+
readme = "README.md"
9+
license = {text = "GPL-2.0-or-later"}
10+
classifiers = [
11+
"Operating System :: OS Independent",
12+
]
13+
14+
requires-python = ">=3.7"
15+
dependencies = [
16+
"pyusb>=1.0.2",
17+
"pyserial>=3.3"
18+
]
19+
20+
[project.urls]
21+
"Homepage" = "https://github.com/fgsect/scat"
22+
"Bug Tracker" = "https://github.com/fgsect/scat/issues"
23+
24+
[project.scripts]
25+
scat = "scat.main:scat_main"
26+
27+
[build-system]
28+
requires = ["setuptools>=61.0"]
29+
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)