Skip to content

Commit

Permalink
Fixes application name
Browse files Browse the repository at this point in the history
  • Loading branch information
nezhar committed Jun 8, 2017
1 parent eb867c6 commit fa54f36
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
*.pyc
venv/**
dist/**
anexia_monitor.egg-info/**
django_anexia_monitoring.egg-info/**
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Install the package by using pip

::

pip install anexia-monitor
pip install anexia-monitoring

Add the app the settings installed apps

Expand All @@ -22,7 +22,7 @@ Add the app the settings installed apps
INSTALLED_APPS = [
...
# Anexia monitor
'anexia_monitor',
'anexia_monitoring',
...
]

Expand All @@ -36,11 +36,11 @@ Add URL configuration for REST endpoint

::

from anexia_monitor import urls as monitor_urls
from anexia_monitoring import urls as monitor_urls
...
urlpatterns = [
...
# Anexia monitor
# Anexia monitoring
url(r'^', include(monitor_urls)),
...
]
Expand Down Expand Up @@ -151,7 +151,7 @@ This check can be defined into the app even subscribers
::

from django.dispatch import receiver
from anexia_monitor.events import monitor_up_check
from anexia_monitoring.events import monitor_up_check

@receiver(monitor_up_check)
def list_of_complete_polls_handler(sender, **kwargs):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='anexia-monitor',
name='django-anexia-monitoring',
version='0.1.0',
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='Finds packages that require updates on a python environment.',
description='A Django app used to monitor updates for Django and all installed python packages in the running environment. It can be also used to check if the website is alive and working correctly.',
long_description=README,
url='http://www.anexia-it.com/',
author='Anexia',
Expand Down

0 comments on commit fa54f36

Please sign in to comment.