-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Base on my copier template 'copier_python_package_template'.
Move code to 'src'. Move from setup.py to setup.cfg. Update some dependencies. Move from tox to nox.
- Loading branch information
Showing
77 changed files
with
996 additions
and
360 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Changes here will be overwritten by Copier | ||
_commit: ec5afd9 | ||
_src_path: git@github.com:lhupfeldt/copier_python_package_template.git | ||
author_email: lhn@hupfeldtit.dk | ||
author_name: Lars Hupfeldt Nielsen | ||
company_name: Hupfeldt IT | ||
copyright_holder: Lars Hupfeldt Nielsen, Hupfeldt IT ApS | ||
creation_year: 2012 | ||
description: Python API with high level build flow constructs (parallel/serial) for | ||
Jenkins. | ||
git_repo_url: https://github.com/lhupfeldt/jenkinsflow.git | ||
github_organization: lhupfeldt | ||
legal_entity: ApS | ||
local_devel_dependency: '' | ||
module_name: jenkinsflow | ||
package_name: jenkinsflow |
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,57 +1,21 @@ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Packages | ||
*~ | ||
*.pyc | ||
__pycache__ | ||
.cache | ||
.coverage | ||
.pytest_cache | ||
*.egg | ||
*.egg-info | ||
TAGS | ||
*.class | ||
.eggs | ||
develop-eggs | ||
dist | ||
build | ||
parts | ||
bin | ||
var | ||
sdist | ||
.installed.cfg | ||
lib | ||
lib64 | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage* | ||
coverage_rc.tenjin.cache* | ||
.tox | ||
.nox | ||
nosetests.xml | ||
.pytest_cache/ | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Emacs backup | ||
*~ | ||
TAGS | ||
*_flymake.py | ||
|
||
.mypy_cache | ||
*.tenjin.cache | ||
.cache | ||
.cache-* | ||
__pycache__ | ||
|
||
# Vim swap | ||
*.sw? | ||
|
||
# PyChrm files | ||
.idea | ||
build | ||
test/out | ||
|
||
# Sphinx | ||
doc/_build/* |
Oops, something went wrong.