We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309a2ba commit 1b1320dCopy full SHA for 1b1320d
2 files changed
.gitignore
@@ -0,0 +1,3 @@
1
+__pycache__/
2
+*.py[cod]
3
+dist/
pyproject.toml
@@ -0,0 +1,22 @@
+[tool.poetry]
+name = "kcare-uchecker"
+version = "0.1.0-beta.0"
4
+description = "A simple tool to detect outdated shared libraries"
5
+authors = ["Rinat Sabitov <rinat.sabitov@gmail.com>"]
6
+license = "GPL-2.0-only"
7
+packages = [
8
+ { include = "uchecker.py" },
9
+]
10
+
11
+[tool.poetry.dependencies]
12
+python = "^3.8|^2.7"
13
14
+[tool.poetry.dev-dependencies]
15
16
+[build-system]
17
+requires = ["poetry>=0.12"]
18
+build-backend = "poetry.masonry.api"
19
20
+[tool.poetry.scripts]
21
+uchecker = 'uchecker:main'
22
0 commit comments