-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
43 lines (41 loc) · 1.52 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyliveupdate",
version="0.3.1",
author="devopspp",
keywords='runtime instrumentation logging profiling debugging',
description="A tool to manipulate python code at runtime for logging, profiling, debugging, etc.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/devopspp/pyliveupdate",
license='GPLv3',
packages=setuptools.find_packages(exclude=['tests', 'experimental', 'examples']),
python_requires='>=3.5',
install_requires=[
'bytecode',
'Werkzeug',
'grpcio',
'grpcio-tools',
'aenum'
],
entry_points="""
[console_scripts]
pylu-controller = pyliveupdate.controller.startcontroller:main
pylu-processlogs = pyliveupdatescripts.processfunclogs:main
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Debuggers',
'Programming Language :: Python :: 3',
],
scripts=['pyliveupdatescripts/flamegraph.pl']
)