Skip to content

Commit

Permalink
Base on my copier template 'copier_python_package_template'.
Browse files Browse the repository at this point in the history
Move code to 'src'.
Move from setup.py to setup.cfg.
Update some dependencies.
Move from tox to nox.
  • Loading branch information
lhupfeldt committed Oct 10, 2024
1 parent 159d391 commit 9945bb2
Show file tree
Hide file tree
Showing 77 changed files with 996 additions and 360 deletions.
16 changes: 16 additions & 0 deletions .copier-answers.yml
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
58 changes: 11 additions & 47 deletions .gitignore
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/*
Loading

0 comments on commit 9945bb2

Please sign in to comment.