We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9546223 commit 280831aCopy full SHA for 280831a
pyproject.toml
@@ -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
0 commit comments