-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
60 lines (49 loc) · 2.07 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
53
54
55
56
57
58
59
#!/usr/bin/env python
#
# Copyright (c) 2011-2012 Corey Goldberg (http://goldb.org)
#
# This file is part of linux-metrics
#
# License :: OSI Approved :: MIT License:
# http://www.opensource.org/licenses/mit-license
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
""" setup/install script for linux-metrics """
from distutils.core import setup
from linux_metrics import __version__
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
setup(
name = 'linux-metrics',
version = __version__,
packages = ['linux_metrics'],
author = 'Corey Goldberg',
author_email = '[email protected]',
description = 'linux-metrics - System Metrics/Stats Library for Linux',
long_description = LONG_DESCRIPTION,
url = 'https://github.com/cgoldberg/linux-metrics',
download_url = 'http://pypi.python.org/pypi/linux-metrics',
platforms = ['Linux'],
license = 'MIT',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
]
)