Skip to content

Commit

Permalink
Finish 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatologist committed Jul 23, 2019
2 parents d8ea6e6 + 17c2dc9 commit 797efbe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ BUILDDIR = _build
AUTODOCDIR = api
AUTODOCBUILD = sphinx-apidoc
PROJECT = qrmine
MODULEDIR = ../src/qrmine
MODULEDIR = ../qrmine

# User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $?), 1)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.join(__location__, '../src'))
sys.path.insert(0, os.path.join(__location__, '../'))

# -- Run sphinx-apidoc ------------------------------------------------------
# This hack is necessary since RTD does not issue `sphinx-apidoc` before running
Expand All @@ -35,7 +35,7 @@
from sphinx import apidoc

output_dir = os.path.join(__location__, "api")
module_dir = os.path.join(__location__, "../src/qrmine")
module_dir = os.path.join(__location__, "../qrmine")
try:
shutil.rmtree(output_dir)
except FileNotFoundError:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
=qrmine
# Add here dependencies of your project (semicolon-separated), e.g.
# install_requires = numpy; scipy
install_requires = numpy; pandas; matplotlib; imbalanced-learn; xgboost; mlxtend; Keras; keras-text; click; vaderSentiment; spacy; textacy
# Add here test requirements (semicolon-separated)
tests_require = pytest; pytest-cov

[options.packages.find]
where = src
where = qrmine
exclude =
tests

Expand Down

0 comments on commit 797efbe

Please sign in to comment.