-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (37 loc) · 911 Bytes
/
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
import os
import skbuild
import memtrace
uname = os.uname()
skbuild.setup(
name="memtrace",
version=memtrace.__version__,
author="mephi42",
author_email="[email protected]",
description="Valgrind tool for tracing memory accesses",
url="https://github.com/mephi42/memtrace",
packages=[
"memtrace",
"memtrace_ext",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"click",
"dataclasses; python_version < '3.7'",
"sortedcontainers",
],
package_data={
"memtrace": [
"memtrace.ipynb",
],
},
entry_points={
"console_scripts": [
"memtrace=memtrace.cli:main",
],
},
)