-
Notifications
You must be signed in to change notification settings - Fork 360
/
requirements_base.txt
78 lines (72 loc) · 3.11 KB
/
requirements_base.txt
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
# Streamlit
streamlit==0.61
tornado==5.1.1
# Utils
# ------------------------------------------------------------------------------
invoke==1.3.0 # Invoke is a Python task execution tool & library. See http://www.pyinvoke.org/
# Data Engineering and Science
pandas==0.24.2
geopandas==0.6.2 # On Windows please pip install dependencies by following https://geoffboeing.com/2014/09/using-geopandas-windows/
xlrd==1.2.0 # For importing xls files
# Testing
# ------------------------------------------------------------------------------
pytest # https://github.com/pytest-dev/pytest
pytest-sugar # https://github.com/Frozenball/pytest-sugar
pytest-mock # https://github.com/pytest-dev/pytest-mock/
pytest-cov # https://pypi.org/project/pytest-cov/
# Code quality
# ------------------------------------------------------------------------------
# flake8==3.7.5 # https://github.com/PyCQA/flake8
isort>=4.3.15 # Sort import statements. We need 4.3.15 to correctly sort dataclasses
pylint # Linter.
pylint2junit # Used to generate junit xml reports in azure pipelines https://pypi.org/project/pylint2junit/
black # Auto formatter.
autoflake # Automatically removes unused imports and unused variables. See https://github.com/myint/autoflake
coverage # https://github.com/nedbat/coveragepy
mypy # https://github.com/python/mypy
bandit # Bandit is a tool designed to find common security issues in Python code. See https://pypi.org/project/bandit/
# Documentation
# ------------------------------------------------------------------------------
Sphinx==1.8.4 # https://github.com/sphinx-doc/sphinx
sphinx_rtd_theme # Documentation theme
recommonmark # Documentation using Markdown
sphinx-autobuild # Auto build and live reload server
doc8 # Doc8 is an opinionated style checker for rst (with basic support for plain text) styles of documentation. See https://github.com/openstack/doc8
# m2r # M2R converts a markdown file including reStructuredText (rst) markups to a valid rst format. See https://pypi.org/project/m2r/
# sphinxcontrib-blockdiag # Creates diagram images from simple text files. See http://blockdiag.com/en/index.html
# sphinxcontrib.actdiag # Creates diagram images from simple text files. See http://blockdiag.com/en/actdiag/index.html
# nbsphinx # Enables you to write your documentation in Jupyter Notebooks. See https://nbsphinx.readthedocs.io/en/0.4.2/
# Other
spacy==2.2.1 # Industrial-Strength Natural Language Processing https://spacy.io/
# boto3
# botocore
# Pillow
# requests
bokeh==2.0.2
GitPython==3.1.0
graphviz==0.13
matplotlib==3.1.1
scipy==1.3.1
sklearn
tensorflow==2.0.1
seaborn==0.9.0
sportsreference==0.4.6
pydot==1.4.1
plotly==4.1.0
PyYAML==5.2
twine==2.0.0
opencv-python==4.1.1.26
yfinance==0.1.45
lxml==4.4.1
vaderSentiment==3.2.1 # A lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media. See https://github.com/cjhutto/vaderSentiment
hvplot==0.5.2
panel==0.9.5
keras==2.3.1
yahooquery==1.0.11
pydeck==0.2.0
nltk
autopep8==1.5.2
docformatter==1.3.1
pycodestyle==2.6.0
yapf==0.30.0
pyformat==0.7.0