Skip to content
This repository was archived by the owner on Jun 29, 2023. It is now read-only.

Commit e3f835c

Browse files
committed
Change command's name and update readme
1 parent e4aaf2a commit e3f835c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include LICENSE
22
include README.rst
3-
recursive-include docs *
3+
recursive-include docs *
4+
prune django_log_analyser

README.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@ Quick start
3131

3232
INSTALLED_APPS = [
3333
...
34-
'log_analyser.log_management',
35-
'log_analyser.analyser_pgbadger',
34+
'log_analyser',
3635
]
3736

3837
2. Include the log_analyser URLconf in your project urls.py like this::
3938

40-
url(r'', include('log_analyser.log_analyser.urls')),
39+
url(r'', include('log_analyser.urls')),
4140

4241
3. "log_analyser" needs you to add a few constants to your settings::
4342

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
setup(
1111
name='django-log-analyser',
12-
version='0.2',
13-
packages=find_packages(where='log_analyser'),
12+
version='0.2.0',
13+
packages=find_packages(),
1414
install_requires=[
1515
'boto3==1.3.1',
1616
'django>=1.7',

0 commit comments

Comments
 (0)