Skip to content

Commit

Permalink
Remove tests from the distribution
Browse files Browse the repository at this point in the history
* Remove author from the setup.py
* Bump version of the distribution
* Change project homepage url
* Add urls for documentation and source code
  • Loading branch information
petarnikolovski committed Sep 2, 2021
1 parent e13b2c7 commit 2e20af6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
branch = true
source = .
omit =
.venv/*
*/tests*
setup.py

Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.4.1] - 2021-09-02

### Fixed

- STDOUT gets printed event in the case of error, narrenschiff now defaults to printing STDOUT only if STDERR is missing from shell subprocess
- Test package is not a part of the distribution anymore

## [3.4.0] - 2021-08-21

Expand Down
2 changes: 1 addition & 1 deletion narrenschiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.


__version__ = "3.4.0"
__version__ = "3.4.1"
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,19 @@
setup(
name='narrenschiff',
version=narrenschiff.__version__,
packages=find_packages(),
description='k8s deployment and configuration management tool',
packages=find_packages('.', exclude=['tests*', 'docs*']),
description='Configuration management tool for Kubernetes',
long_description=README,
long_description_content_type='text/markdown',
license_files=('LICENSE',),
license='Apache License, Version 2.0',
url='https://docs.narrenschiff.xyz',
url='https://narrenschiff.xyz',
project_urls={
'Documentation': 'https://docs.narrenschiff.xyz',
'Source': 'https://github.com/petarnikolovski/narrenschiff',
},
maintainer='Petar Nikolovski',
maintainer_email='petar.nikolovski@protonmail.com',
author='Petar Nikolovski',
author_email='petar.nikolovski@protonmail.com',
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 2e20af6

Please sign in to comment.