Rev 123: Add pypi information in setup.py in http://bazaar.launchpad.net/~meliae-dev/meliae/trunk
John Arbash Meinel
john at arbash-meinel.com
Tue Dec 29 23:01:19 GMT 2009
At http://bazaar.launchpad.net/~meliae-dev/meliae/trunk
------------------------------------------------------------
revno: 123
revision-id: john at arbash-meinel.com-20091229230055-2y2ko4lcclrwwake
parent: john at arbash-meinel.com-20091223230144-benkylfi7yaof907
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: trunk
timestamp: Tue 2009-12-29 17:00:55 -0600
message:
Add pypi information in setup.py
-------------- next part --------------
=== modified file 'setup.py'
--- a/setup.py 2009-12-23 15:19:16 +0000
+++ b/setup.py 2009-12-29 23:00:55 +0000
@@ -20,13 +20,43 @@
kwargs = {
"name": "meliae",
"version": meliae.__version__,
- "description": "Dump Memory Content to disk for Python Programs",
+ "description": "Python Memory Usage Analyzer",
"author": "John Arbash Meinel",
"author_email": "john.meinel at canonical.com",
"url": "https://launchpad.net/meliae",
+ "license": "GNU GPL v3",
+ "download_url": "https://launchpad.net/meliae/+download",
"packages": ["meliae"],
"scripts": ["strip_duplicates.py"],
"ext_modules": ext
+ "classifiers": [
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: GNU General Public License (GPL)',
+ 'Operating System :: OS Independent',
+ 'Operating System :: Microsoft :: Windows',
+ 'Operating System :: POSIX',
+ 'Programming Language :: Python',
+ 'Programming Language :: Cython',
+ 'Topic :: Software Development :: Debuggers',
+ ]
+ "long_description": """\
+This project is similar to heapy (in the 'guppy' project), in its attempt to
+understand how memory has been allocated.
+
+Currently, its main difference is that it splits the task of computing summary
+statistics, etc of memory consumption from the actual scanning of memory
+consumption. It does this, because I often want to figure out what is going on
+in my process, while my process is consuming huge amounts of memory (1GB, etc).
+It also allows dramatically simplifying the scanner, as I don't allocate python
+objects while trying to analyze python object memory consumption.
+
+It will likely grow to include a GUI for browsing the reference graph. For now
+it is mostly used in the python interpreter.
+
+The name is simply a fun word (means Ash-wood Nymph).
+"""
}
from distutils.core import setup, Extension
More information about the bazaar-commits
mailing list