mirror of
https://github.com/HorlogeSkynet/archey4
synced 2025-04-16 16:00:13 +02:00

* Adds test cases * Now compatible with setuptools * Improves documentation * Sets a real software architecture for a Python project * New code styles to improve readability * Now GPU will sort entries by relevancy and output only the best one * Adds new strings to configuration for translation * Major optimizations of external calls * Packages entry will now output more accurate values, and is compatible with non-English locales
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='archey4',
|
|
version='4.4.0',
|
|
description='Archey is a simple system information tool written in Python',
|
|
keywords='archey python3 linux system-information monitoring',
|
|
url='http://git.io/archey4',
|
|
author='Samuel FORESTIER', # Not alone
|
|
author_email='dev@samuel.domains',
|
|
license='GPLv3',
|
|
packages=['archey'],
|
|
test_suite='test',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'archey = archey.archey:main'
|
|
]
|
|
},
|
|
long_description='Maintained fork of the original Archey Linux system tool'
|
|
' written by Melik Manukyan.',
|
|
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 :: Only',
|
|
'Topic :: System'
|
|
]
|
|
)
|