WHY IS LVM THE WORST THING ON THIS PLANET

This commit is contained in:
brent s
2019-11-06 12:48:18 -05:00
parent f424938913
commit 5f8caf48d6
9 changed files with 241 additions and 38 deletions

View File

@@ -1,12 +1,12 @@
import setuptools
import aif.constants as PROJ_CONST
import aif.constants_fallback as PROJ_CONST
with open('README', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name = 'aif',
version = PROJ_CONST.version,
version = PROJ_CONST.VERSION,
author = 'Brent S.',
author_email = 'bts@square-r00t.net',
description = 'Arch Installation Framework (Next Generation)',
@@ -32,5 +32,5 @@ setuptools.setup(
project_urls = {'Documentation': 'https://aif-ng.io/',
'Source': 'https://git.square-r00t.net/AIF-NG/',
'Tracker': 'https://bugs.square-r00t.net/index.php?project=9'},
install_requires = PROJ_CONST.external_deps
install_requires = PROJ_CONST.EXTERNAL_DEPS
)