-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
executable file
·52 lines (47 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
#
# Urwid setup.py exports the useful bits
# Copyright (C) 2004-2010 Ian Ward
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
# Urwid web site: http://excess.org/urwid/
from setuptools import setup
import os
setup_d = {
'name': "Speedometer",
'version': '2.9',
'author': "Ian Ward",
'author_email': "[email protected]",
'url': "http://excess.org/speedometer/",
'entry_points': {
'console_scripts': ['speedometer = speedometer:console'],},
'install_requires': ['urwid >= 0.9.9.1', 'psutil'],
'license':"LGPL",
'keywords':"network bandwidth monitor system speed download file progress console",
'platforms':"Linux",
'description':"Console monitor of the rate of data across a network connection or data being stored in a file.",
'classifiers':[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
],
}
setup(** setup_d)