Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorPyfisch <pyfisch@posteo.org>2021-04-05 15:30:18 +0200
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-08 09:20:39 -0400
commit5bc9ab3aacf86355801d44f3e99f478454dd1aa9 (patch)
tree7e0d277a3b2529ed0989aa22d984a387dbed6b3f /archinstall
parent5a07bfbebd7d16898a2426627d609bd604c03063 (diff)
Switch to setup.cfg
Configure setup.cfg to find all Python packages. Add more metadata to package.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/archinstall/__init__.py b/archinstall/__init__.py
index d4452d38..c2773b64 100644
--- a/archinstall/__init__.py
+++ b/archinstall/__init__.py
@@ -14,6 +14,8 @@ from .lib.output import *
from .lib.storage import *
from .lib.hardware import *
+__version__ = "2.1.3"
+
## Basic version of arg.parse() supporting:
## --key=value
## --boolean
@@ -27,4 +29,4 @@ for arg in sys.argv[1:]:
key, val = arg[2:], True
arguments[key] = val
else:
- positionals.append(arg) \ No newline at end of file
+ positionals.append(arg)