1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-04-13 04:00:15 +02:00
2020-03-27 15:39:04 +01:00

59 lines
1.8 KiB
Python

#!/usr/bin/env python3
"""
This is the Archey 4's `setup.py` file, allowing us to distribute it as a package...
... with cool meta-data.
"""
import os
import sys
from setuptools import find_packages, setup
# Packaging workaround, waiting for [jordansissel/fpm#1690].
if os.getenv('PYTHONDONTWRITEBYTECODE'):
sys.dont_write_bytecode = True
setup(
name='archey4',
version='4.7.0',
description='Archey is a simple system information tool written in Python',
keywords='archey python3 linux system-information monitoring',
url='https://github.com/HorlogeSkynet/archey4',
author='Samuel FORESTIER', # Not alone
author_email='dev+archey@samuel.domains',
license='GPLv3',
packages=find_packages(exclude=['archey.test']),
test_suite='archey.test',
install_requires=[
'distro',
'netifaces'
],
entry_points={
'console_scripts': [
'archey = archey.__main__:main'
]
},
long_description='Maintained fork of the original Archey Linux system tool'
' originally written by Melik Manukyan.',
long_description_content_type='text/plain',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System'
]
)