Skip to content

Commit

Permalink
chore: housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdevpl committed Aug 23, 2023
1 parent 4b4c3cb commit 2cd96b3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Python libraries as specified in `<requirements.txt>`_.

Building and running tests additionally requires packages listed in `<requirements_test.txt>`_.

Tested on Linux, OS X and Windows.
Tested on Linux, macOS and Windows.

Available boilerplates
======================
Expand Down Expand Up @@ -214,7 +214,7 @@ add the following to your ``test/__init__.py``:
level_package = logging.DEBUG
TestsLogging.configure_basic()
TestsLogging.configure()
If you wish, you can make your test logging config be a variant of your application logging config,
like so:
Expand Down
19 changes: 15 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,32 @@ class Package(boilerplates.setup.Package):
url = 'https://github.com/mbdevpl/python-boilerplates'
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only']
keywords = []
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Logging',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
'Typing :: Typed']
keywords = ['git', 'logging', 'packaging', 'releasing']
extras_require = {
'setup': boilerplates.setup.parse_requirements('requirements_setup.txt'),
'packaging_tests': boilerplates.setup.parse_requirements(
'requirements_packaging_tests.txt'),
'config': boilerplates.setup.parse_requirements('requirements_config.txt'),
'logging': boilerplates.setup.parse_requirements('requirements_logging.txt'),
'cli': boilerplates.setup.parse_requirements('requirements_cli.txt'),
'git_repo_tests': boilerplates.setup.parse_requirements('requirements_git_repo_tests.txt')
}
'git_repo_tests': boilerplates.setup.parse_requirements('requirements_git_repo_tests.txt')}


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ class TestsLogging(boilerplates.logging.Logging):
level_package = logging.DEBUG


TestsLogging.configure_basic()
TestsLogging.configure()

0 comments on commit 2cd96b3

Please sign in to comment.