Skip to content

Commit 7a4bbd2

Browse files
committed
Fixed bug with generating distribution files, and made a fix in the docs
1 parent 92f866a commit 7a4bbd2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cursepy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
# Define some metadata here:
1111

12-
__version__ = '1.1.0'
12+
__version__ = '1.1.1'
1313
__author__ = 'Owen Cochell'

cursepy/handlers/__init__.py

Whitespace-only changes.

docs/source/basic/collection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Creating a CC is simple procedure, and can be done like this:
4242
4343
# Create the CC:
4444
45-
client = HandlerCollection()
45+
client = CurseClient()
4646
4747
This will create a CC with the default handlers loaded.
4848
If you do not want the default handlers to be loaded,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125

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

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

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

0 commit comments

Comments
 (0)