Skip to content

Commit b82339d

Browse files
authored
Merge pull request #2 from cloudlinux/poetry-project
Poetry based package structure
2 parents a805520 + 1b1320d commit b82339d

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__/
2+
*.py[cod]
3+
dist/

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.poetry]
2+
name = "kcare-uchecker"
3+
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

Comments
 (0)