-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
37 lines (36 loc) · 1.25 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
from setuptools import setup, find_packages
import flameprof
setup(
name='flameprof',
version=flameprof.version,
url='https://github.com/baverman/flameprof/',
license='MIT',
author='Anton Bobrov',
author_email='baverman@gmail.com',
description='cProfile flamegraph generator',
long_description=open('README.rst').read(),
py_modules=['flameprof'],
scripts=['bin/flameprof'],
include_package_data=True,
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Scientific/Engineering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Systems Administration',
'Topic :: System :: Monitoring',
]
)