mirror of
https://github.com/HorlogeSkynet/archey4
synced 2025-04-16 16:00:13 +02:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
#!/usr/bin/env python3
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='archey4',
|
|
version='4.6.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',
|
|
install_requires=[
|
|
'distro'
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'archey = archey.archey:main'
|
|
]
|
|
},
|
|
long_description='Maintained fork of the original Archey Linux system tool'
|
|
' originally 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',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: System'
|
|
]
|
|
)
|