Skip to content

Python package template for convenience of personal project development.

License

Notifications You must be signed in to change notification settings

xuzuoyang/mypackage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mypackage

Build Status License: MIT

Mypackage is a python package template for convenience of personal project development.

Inspired by

Installation

pip3 install --user cookiecutter
cookiecutter https://github.com/xuzuoyang/mypackage -c cookiecutter project_name=AnotherPackage

Usage

>>> from mypackage import dict_substract
>>> dict_substract({}, {'a': 11})
{}
>>> dict_substract({'a': 12}, {'a': 11})
{'a': 12}
>>> dict_substract({'a': 11, 'b': 0}, {'a': 11})
{'b': 0}

Support

python3.5+

Roadmap

  • add tests.
  • add travis ci.
  • add use of tox.
  • cookiecutter mypackage.
  • enrich setup.cfg for lint.

Changelog

Here

License

MIT

About

Python package template for convenience of personal project development.

Resources

License

Stars

Watchers

Forks

Packages

No packages published