forked from pixelb/ps_mem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 873 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ps_mem",
version="3.8",
author="Pádraig Brady",
author_email="[email protected]",
description=("A utility to report core memory usage per program"),
license="LGPLv2",
keywords="memory RAM profile program linux",
url="http://github.com/pixelb/ps_mem",
long_description=read('README.md'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python",
],
py_modules = ['ps_mem'],
entry_points={'console_scripts':['ps_mem = ps_mem:main']}
)