-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
88 lines (85 loc) · 2.26 KB
/
setup.cfg
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
83
84
85
86
87
88
[metadata]
name = Fundamentos de Programación
author = Álvaro Mauricio Montenegro Díaz, Daniel Mauricio Montenegro Reyes
#version = #control de versiones
#description = #Descripción corta del libro
long_description = file: README.md #Descripción larga del libro
url = https://github.com/AprendizajeProfundo/Libro_Fundamentos_Programacion
license = Attribution 4.0 International (CC BY 4.0)
#license_file = LICENSE
[options]
packages = find:
setup_requires = pyscaffold>=3.2a0,<3.3a0
install_requires =
#Librerías necesarias para le funcionamiento del libro
click~=7.1
docutils>=0.15,<0.18
jsonschema<4
# Include Jupytext to ensure users have the right version, even if not strictly necessary
jupytext>=1.11.2,<1.12 #markdown-it-py~=1 required and support from 1.11.2
linkify-it-py~=1.0.1
myst-nb~=0.13.1
pyyaml
sphinx>=3,<5
sphinx-comments
sphinx-copybutton
sphinx-external-toc~=0.2.3
sphinx-jupyterbook-latex~=0.4.6
sphinx-panels~=0.6.0
sphinx-thebe~=0.1.1
sphinx_book_theme~=0.3.2
sphinx_togglebutton
sphinxcontrib-bibtex~=2.2.0
sphinx-multitoc-numbering~=0.1.3
importlib_metadata;python_version < "3.7"
python_requires = >=3.6
include_package_data = True
[options.entry_points]
console_scripts =
jb = jupyter_book.cli.main:main
jupyter-book = jupyter_book.cli.main:main
[options.extras_require]
code_style =
pre-commit~=2.12
pdfhtml =
pyppeteer
sphinx =
#Carga de librerías que se usan en el libro
scipy
openpyxl #Para poder hacer la visualización de datos importados con pandas
matplotlib
ipympl #Para que los widgets se puedan visualizar
numpy
pandas
nbclient
plotly
graphviz
sphinx-click
sphinx_inline_tabs
sphinxext-rediraffe~=0.2.3
sympy
torch
tensorflow
jax[cpu]
scikit-image
opencv-python-headless
scikit-learn
testing =
beautifulsoup4
beautifulsoup4
cookiecutter
coverage
matplotlib
openpyxl
pyppeteer
pytest>=6.2.4
pytest-cov
pytest-regressions
pytest-timeout
pytest-xdist
sphinx_click
sphinx_tabs
texsoup
[flake8]
max-line-length = 100
extend-ignore = E203