2019-09-30 22:08:37 -04:00
|
|
|
import setuptools
|
2019-11-06 12:48:18 -05:00
|
|
|
import aif.constants_fallback as PROJ_CONST
|
2019-09-30 22:08:37 -04:00
|
|
|
|
|
|
|
with open('README', 'r') as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name = 'aif',
|
2019-11-06 12:48:18 -05:00
|
|
|
version = PROJ_CONST.VERSION,
|
2019-09-30 22:08:37 -04:00
|
|
|
author = 'Brent S.',
|
|
|
|
author_email = 'bts@square-r00t.net',
|
|
|
|
description = 'Arch Installation Framework (Next Generation)',
|
|
|
|
long_description = long_description,
|
|
|
|
long_description_content_type = 'text/plain',
|
|
|
|
url = 'https://aif-ng.io',
|
|
|
|
packages = setuptools.find_packages(),
|
|
|
|
classifiers = ['Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
'Topic :: Software Development :: Testing',
|
|
|
|
'Topic :: System :: Installation/Setup',
|
|
|
|
'Topic :: System :: Recovery Tools'],
|
|
|
|
python_requires = '>=3.6',
|
|
|
|
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'},
|
2019-11-06 12:48:18 -05:00
|
|
|
install_requires = PROJ_CONST.EXTERNAL_DEPS
|
2019-09-30 22:08:37 -04:00
|
|
|
)
|