-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci/qa] Reformatted docs, updated CI settings, updated setup.py
- Loading branch information
1 parent
ce3312b
commit 04c5eb7
Showing
7 changed files
with
118 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Please refer to the `OpenWISP Contributing Guidelines <http://openwisp.io/docs/developer/contributing.html>`_. | ||
Please refer to the `OpenWISP Contributing Guidelines | ||
<http://openwisp.io/docs/developer/contributing.html>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[tool.coverage.run] | ||
source = ["openwisp_monitoring"] | ||
parallel = true | ||
concurrency = ["multiprocessing"] | ||
omit = [ | ||
"openwisp_monitoring/__init__.py", | ||
"*/tests/*", | ||
] | ||
|
||
[tool.docstrfmt] | ||
extend_exclude = ["**/*.py", "README.rst"] | ||
|
||
[tool.isort] | ||
known_third_party = ["django", "django_x509"] | ||
known_first_party = ["openwisp_users", "openwisp_utils", "openwisp_controller"] | ||
default_section = "THIRDPARTY" | ||
line_length = 88 | ||
multi_line_output = 3 | ||
use_parentheses = true | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,9 +43,9 @@ def get_install_requires(): | |
name='openwisp-monitoring', | ||
version=get_version(), | ||
license='GPL3', | ||
author='Federico Capoano', | ||
author_email='[email protected]', | ||
description='OpenWISP 2 Monitoring', | ||
author='OpenWISP', | ||
author_email='[email protected]', | ||
description='OpenWISP Monitoring', | ||
long_description=open('README.rst').read(), | ||
url='http://openwisp.org', | ||
download_url='https://github.com/openwisp/openwisp-monitoring/releases', | ||
|
@@ -56,7 +56,7 @@ def get_install_requires(): | |
zip_safe=False, | ||
install_requires=get_install_requires(), | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: System :: Networking', | ||
|