Skip to content

Commit

Permalink
Fixed bug with generating distribution files, and made a fix in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenCochell committed Nov 17, 2021
1 parent 92f866a commit 7a4bbd2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cursepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

# Define some metadata here:

__version__ = '1.1.0'
__version__ = '1.1.1'
__author__ = 'Owen Cochell'
Empty file added cursepy/handlers/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion docs/source/basic/collection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Creating a CC is simple procedure, and can be done like this:
# Create the CC:
client = HandlerCollection()
client = CurseClient()
This will create a CC with the default handlers loaded.
If you do not want the default handlers to be loaded,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

# When your source code is in a subdirectory under the project root, e.g.
# `src/`, it is necessary to specify the `package_dir` argument.
# package_dir={'': 'src'}, # Optional
# package_dir={'': '.'}, # Optional

# You can just specify package directories manually here if your project is
# simple. Or you can use find_packages().
Expand All @@ -136,7 +136,7 @@
#
# py_modules=["my_module"],
#
packages=['cursepy'], # Required
packages=find_packages(), # Required

# Specify which Python versions you support. In contrast to the
# 'Programming Language' classifiers above, 'pip install' will check this
Expand Down

0 comments on commit 7a4bbd2

Please sign in to comment.