-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·42 lines (38 loc) · 1.31 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()
__version__ = '2.1'
setup(
name='profilestats',
version=__version__,
author='Hanno Schlichting',
author_email='hanno@hannosch.eu',
url='http://pypi.python.org/pypi/profilestats',
keywords='profile kcachegrind qcachegrind',
description='Decorator for profiling individual functions and converting '
'profiling data to the kcachegrind/qcachegrind format.',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
license='BSD',
install_requires=[
'setuptools',
'pyprof2calltree',
],
py_modules=['profilestats'],
zip_safe=False,
)