File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ Blackfire Continuous Profiler continuously collects and uploads profiling data t
1010
1111## Installation
1212
13- TODO: After deciding the pkg name
13+ ``` shell
14+ pip install blackfire_conprof
15+ ```
1416
1517## Example
1618
@@ -19,7 +21,7 @@ An example using the whole API interface:
19211 . Install dependencies
2022
2123``` shell
22- pip install XXX
24+ pip install blackfire_conprof
2325```
2426
25272 . Create ` example.py ` with the following code
Original file line number Diff line number Diff line change 1+ import io
12from setuptools import setup
23
34HOMEPAGE = "https://blackfire.io"
45NAME = "blackfire_conprof"
56
7+ with io .open ('README.md' ), encoding = 'UTF-8' ) as f :
8+ long_description = f .read ()
9+
610exec (open ('blackfire_conprof/version.py' ).read ())
711setup (
812 name = NAME ,
13171418 install_requires = ["ddtrace==1.13.3" ],
1519 description = "Blackfire Continuous Profiler" ,
16- long_description = "Blackfire Continuous Profiler" ,
17- long_description_content_type = "text/x-rst " ,
20+ long_description = long_description ,
21+ long_description_content_type = "text/markdown " ,
1822 url = HOMEPAGE ,
1923 classifiers = [
2024 "Programming Language :: Python" ,
You can’t perform that action at this time.
0 commit comments