-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 730 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name = "flamegraph",
version = "0.1",
packages = ['flamegraph'],
author = 'Evan Hempel',
author_email = 'evanhempel@evanhempel.com',
description = 'Statistical profiler which outputs in format suitable for FlameGraph',
long_description = open('README.rst').read(),
license = 'UNLICENSE',
keywords = 'profiler flamegraph',
url = 'https://github.com/evanhempel/python-flamegraph',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python',
'Topic :: Software Development :: Debuggers',
]
)