-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathsetup.py.in
More file actions
executable file
·65 lines (60 loc) · 2.16 KB
/
setup.py.in
File metadata and controls
executable file
·65 lines (60 loc) · 2.16 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
#!/usr/bin/env python
import setuptools
with open("README.md", "rb") as fh:
long_description = fh.read().decode('utf-8')
# See https://packaging.python.org/tutorials/packaging-projects/ for details
setuptools.setup(
name="debuggingbook",
version="1.3.2",
author="Andreas Zeller",
author_email="zeller@cispa.de",
description="Code for 'The Debugging Book' (https://www.debuggingbook.org/)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.debuggingbook.org/",
packages=['debuggingbook', 'debuggingbook.bookutils'],
python_requires='>=3.10', # Mostly for ast.unparse()
# packages=setuptools.find_packages(),
# From requirements.txt
install_requires=[
'beautifulsoup4>=4.9.3',
'diff_match_patch>=20200713',
'easyplotly>=0.1.3',
'enforce>=0.3.4',
'fuzzingbook>=0.8.1',
'graphviz>=0.14.2',
'ipython>=7.16.1',
'lxml>=4.5.1',
'Markdown>=3.3.4',
'matplotlib>=3.3.2',
'multiprocess>=0.70.12.2',
'nbconvert>=6.0.7',
'nbformat>=5.0.8',
'networkx>=2.5',
'numpy>=2.2.1',
'pandas>=2.2.3',
'pydriller>=2.3',
'pyparsing==2.4.7', # newer versions conflict with bibtexparser
# 'pygraphviz>=1.9', # in case of trouble, see https://pygraphviz.github.io/documentation/stable/install.html
'Pygments>=2.7.1',
'python-magic>=0.4.18',
'scikit_learn>=0.23.2',
'selenium>=3.141.0',
'showast2>=0.3.1',
],
# See https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Testing",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Security"
],
)