-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
49 lines (45 loc) · 1.68 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
44
45
46
47
48
49
import io
import os
import sys
from setuptools import setup
README = os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")
with io.open(README, encoding="utf-8") as f:
long_description = f.read()
install_requires = ["protobuf", "six", "zprofile"]
if sys.version_info.major >= 3:
install_requires.append("mprofile")
setup(
name="pypprof",
version="0.0.1",
description="Python profiler endpoints like Go's net/http/pprof.",
long_description=long_description,
long_description_content_type="text/markdown",
platforms=["Mac OS X", "POSIX"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules"
],
project_urls={
"Source": "https://github.com/timpalpant/pypprof",
"Tracker": "https://github.com/timpalpant/pypprof/issues",
},
keywords="profiling performance",
url="http://github.com/timpalpant/pypprof",
author="Timothy Palpant",
author_email="[email protected]",
license="LGPLv3",
packages=["pypprof"],
package_data={"pypprof": ["index.html"]},
install_requires=install_requires,
test_suite="test",
)