forked from finereli/pydump
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·82 lines (72 loc) · 1.89 KB
/
setup.py
File metadata and controls
executable file
·82 lines (72 loc) · 1.89 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import re
import ast
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages
from setuptools import setup
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("src/debuglater/__init__.py", "rb") as f:
VERSION = str(
ast.literal_eval(_version_re.search(f.read().decode("utf-8")).group(1))
)
DESCRIPTION = """
debuglater allows post-mortem debugging for Python programs.
It writes the traceback of an exception into a file and can later load
it in a Python debugger.
Works with the built-in pdb and with other popular debuggers
(pudb, ipdb and pdbpp).
"""
# requirements
REQUIRES = [
"colorama",
]
# optional requirements
ALL = [
"dill",
]
# only needed for development
DEV = [
"pytest",
"yapf",
"flake8",
"invoke",
"twine",
"pkgmt",
# for tests
"pandas",
"numpy",
]
setup(
name="debuglater",
version=VERSION,
description="Post-mortem debugging for Python programs",
long_description=DESCRIPTION,
author="Ploomber",
license="MIT",
author_email="contact@plooomber.io",
url="https://github.com/ploomber/debuglater",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
extras_require={
"dev": DEV + ALL,
"all": ALL,
},
entry_points={
"console_scripts": [
"debuglater=debuglater.cli:main",
"dltr=debuglater.cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Debuggers",
],
install_requires=REQUIRES,
)