-
Notifications
You must be signed in to change notification settings - Fork 284
/
setup.py
30 lines (26 loc) · 925 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
30
# -*- 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.14",
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="https://github.com/pixelb/ps_mem",
long_description=read('README.md'),
long_description_content_type='text/markdown',
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']}
)