forked from HorlogeSkynet/archey4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/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'
]
)