-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
45 lines (37 loc) · 1.08 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
43
44
45
from setuptools import setup
import sys
if sys.version_info < (2,5):
raise NotImplementedError(
"Sorry, you need at least Python 2.5 to use cprofilev.")
VERSION = '1.0.7'
__doc__ = """\
An easier way to use cProfile.
Outputs a simpler html view of profiled stats.
Able to show stats while the code is still running!
"""
setup(
name='CProfileV',
version=VERSION,
url='https://github.com/ymichael/cprofilev',
author='Michael Yong',
py_modules=['cprofilev'],
entry_points="""
[console_scripts]
cprofilev = cprofilev:main
""",
install_requires=["bottle"],
license='MIT',
description='An easier way to use cProfile',
long_description=__doc__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Bottle',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
]
)