Skip to content

Commit

Permalink
add pyproject.toml and remove requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
peremen committed Jul 31, 2023
1 parent 9546223 commit 280831a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[project]
name = "scat"
version = "1.0.0"
authors = [
{ name="Shinjo Park", email="[email protected]" },
]
description = "Signaling Collection and Analysis Tool"
readme = "README.md"
license = {text = "GPL-2.0-or-later"}
classifiers = [
"Operating System :: OS Independent",
]

requires-python = ">=3.7"
dependencies = [
"pyusb>=1.0.2",
"pyserial>=3.3"
]

[project.urls]
"Homepage" = "https://github.com/fgsect/scat"
"Bug Tracker" = "https://github.com/fgsect/scat/issues"

[project.scripts]
scat = "scat.main:scat_main"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

0 comments on commit 280831a

Please sign in to comment.