Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bos committed Jun 13, 2012
2 parents f825408 + 684f79a commit 9c54574
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
11 changes: 11 additions & 0 deletions AUTHORS
@@ -0,0 +1,11 @@
statprof was originally written by Andy Wingo, and later ported to modern
Python by Alex Frazer. It's now maintained by Bryan O'Sullivan.

And here is an list of people who have submitted patches, reported bugs, and
generally made statprof that much better:

* Alex Fraser <alex at phatcore dot com>
* Andy Wingo <wingo at pobox dot com>
* Bryan O'Sullivan <bos@serpentine.com>
* Rob Browning <rlb at defaultvalue dot org>
* Timothée Peignier <tim at tryphon dot org>
File renamed without changes.
4 changes: 0 additions & 4 deletions MANIFEST

This file was deleted.

5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,5 @@
LICENSE
AUTHORS
README.rst
setup.py
statprof.py
9 changes: 6 additions & 3 deletions setup.py
@@ -1,8 +1,11 @@
#!/usr/bin/env python
import sys

import os, sys
from setuptools import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
Expand All @@ -13,11 +16,11 @@
author="Bryan O'Sullivan",
author_email="bos@serpentine.com",
description="Statistical profiling for Python",
license="LGPL",
license=read('LICENSE'),
keywords="profiling",
url="http://packages.python.org/statprof",
py_modules=['statprof'],
long_description=open('README.rst').read(),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
Expand Down

0 comments on commit 9c54574

Please sign in to comment.