-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.11 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
import io
from setuptools import setup
HOMEPAGE = "https://blackfire.io"
NAME = "blackfire_conprof"
with io.open('README.md', encoding='UTF-8') as f:
long_description = f.read()
exec(open('blackfire_conprof/version.py').read())
setup(
name=NAME,
version=__version__,
license='MIT',
author="Blackfire.io",
packages=['blackfire_conprof', 'blackfire_conprof.bootstrap'],
author_email="[email protected]",
install_requires=["ddtrace==2.9.1"],
description="Blackfire Continuous Profiler",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"blackfire-conprof = blackfire_conprof:bootstrap_python",
]
},
url=HOMEPAGE,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)