mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-11 17:26:37 +03:00
25 lines
731 B
Python
25 lines
731 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
# Utility function to read the README file.
|
|
# Used for the long_description. It's nice, because now 1) we have a top level
|
|
# README file and 2) it's easier to type in the README file than to put a raw
|
|
# string in below ...
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
setup( name='Glances',
|
|
version='1.3',
|
|
description='CLI curses-based monitoring tool',
|
|
author='Nicolas Hennion',
|
|
author_email='nicolas@nicolargo.com',
|
|
license = "LGPL",
|
|
keywords = "cli curse monitoring system",
|
|
long_description=read('README'),
|
|
url='https://github.com/nicolargo/glances',
|
|
packages=['src'],
|
|
install_requires=['statgrab>=0.5']
|
|
)
|