tomtom-international / cookiecutter-python

:cookie: Cookiecutter template for Python packages
Apache License 2.0
18 stars 8 forks source link

feat: don't generate opensource related files for non-oss projects #52

Closed martinm82 closed 5 years ago

martinm82 commented 5 years ago

Description

Right now regardless whether a project is published on GH or BB we produce the same files. Some files are important when opensourcing a project whereas for internal usage only some are superfluous.

The idea is that when selecting BitBucket Server as VCS we can assume that the project won't be opensourced. In that case we should clean up all files related to OSS in the post hook.

If someone decides to opensource the projects the template can be again applied with GH as VCS and the important files will be generated again.

akhranovsky commented 5 years ago

The following files could be removed in case of BitBucket setup:

martinm82 commented 5 years ago

Thanks for the contribution @AKhranovskiy