Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Copyright (C) YEAR Amadeus s.a.s.
See the end of the file for license conditions.

# python-project-starter

This is a template repo to act as a reference when starting up a new project in python. It consolidates best practices in regards to minimal level of documentation as well as the CI aspects.
Expand Down Expand Up @@ -117,4 +120,21 @@ gh release create v[a.b.c] --prerelease --title "Kick starting the release" --t
```

# Contributing
We welcome contributions to this project! If you have an idea for a new feature, bug fix, or improvement, please open an issue or submit a pull request. Before contributing, please read our [contributing guidelines](./CONTRIBUTING.md).
We welcome contributions to this project! If you have an idea for a new feature, bug fix, or improvement, please open an issue or submit a pull request. Before contributing, please read our [contributing guidelines](./CONTRIBUTING.md).

# License

This file is part of PROJECT.

PROJECT is free software: you can redistribute it and/or
modify it under the terms of the Apache 2.0 License as published by
the Apache Software Foundation.

PROJECT is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License
for more details.

You should have received a copy of the Apache 2.0 License
along with PROJECT.
If not, see <https://www.apache.org/licenses/LICENSE-2.0>.
15 changes: 15 additions & 0 deletions package/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# This file is part of PROJECT.
#
# PROJECT is free software: you can redistribute it and/or
# modify it under the terms of the Apache 2.0 License as published by
# the Apache Software Foundation.
#
# PROJECT is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License
# for more details.
#
# You should have received a copy of the Apache 2.0 License
# along with PROJECT.
# If not, see <https://www.apache.org/licenses/LICENSE-2.0>.

from .module import square
from ._version import __version__

Expand Down
15 changes: 15 additions & 0 deletions package/module.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# This file is part of PROJECT.
#
# PROJECT is free software: you can redistribute it and/or
# modify it under the terms of the Apache 2.0 License as published by
# the Apache Software Foundation.
#
# PROJECT is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License
# for more details.
#
# You should have received a copy of the Apache 2.0 License
# along with PROJECT.
# If not, see <https://www.apache.org/licenses/LICENSE-2.0>.

__all__ = [
"square",
]
Expand Down
15 changes: 15 additions & 0 deletions test_package.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# This file is part of PROJECT.
#
# PROJECT is free software: you can redistribute it and/or
# modify it under the terms of the Apache 2.0 License as published by
# the Apache Software Foundation.
#
# PROJECT is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License
# for more details.
#
# You should have received a copy of the Apache 2.0 License
# along with PROJECT.
# If not, see <https://www.apache.org/licenses/LICENSE-2.0>.

import pytest
from package import square

Expand Down
Loading