Skip to content

Commit

Permalink
wip on issue #17
Browse files Browse the repository at this point in the history
  • Loading branch information
etijskens committed Nov 11, 2019
1 parent f38c9d4 commit 9580554
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 67 deletions.
8 changes: 2 additions & 6 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
This section summarizes all my steps on the way to a working micc,
including dead-ends.



issue: micc is no longer compatible with itself: `micc add foo --f2py` fails.
That is of course only a problem for myself.

v0.7.5 (2019-11-11)
===================
* fixed `Github issue #12 <https://github.com/etijskens/micc/issues/12>`_
* `Github issue #17 <https://github.com/etijskens/micc/issues/17>`_ micc is no longer compatible with itself
* Fixed `Github issue #12 <https://github.com/etijskens/micc/issues/12>`_

v0.7.4 (2019-10-23)
===================
Expand Down
66 changes: 11 additions & 55 deletions micc.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,13 @@
{
"full_name" : {"default":"Engelbert Tijskens"
,"text" :"your full name"
},
"email" : {"default":"engelbert.tijskens@uantwerpen.be"
,"text" :"your e-mail address"
},
"github_username" : {"default":"etijskens"
,"text" :"your github username"
},
"project_name" : {"default":""
,"text" :"the name of the project to be created"
},
"project_slug" : {"default":"{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}"
,"text" :"the name of the project to be created"
},
"project_short_description":
{"default":""
,"text" :"a short description of the project"
},
"pypi_username" : {"default":"{{ cookiecutter.github_username }}"
,"text" :"your pypi username"
},
"version" : {"default":"0.0.0"
,"text" :"the initial version number of the project"
},
"use_pytest" : {"default":"y"
,"text" :"the name of the project to be created"
},
"use_pypi_deployment_with_travis"
: {"default":"n"
,"text" :"use PyPI deployment with Travis"
},
"add_pyup_badge" : {"default":"n"
,"text" :"use pyup"
},
"command_line_interface"
: {"default":"click"
,"text" :"create a commandline interface with click"
,"type" :"click.Choice(['Click', 'No command-line interface'])"
},
"create_author_file"
: {"default":"y"
,"text" :"create author file"
},
"open_source_license"
: {"default":"MIT license"
,"text" :"the name of the project to be created"
,"type" :"click.Choice(['MIT license', 'BSD license', 'ISC license', 'Apache Software License 2.0', 'GNU General Public License v3', 'Not open source'])"
},
"cookiecutter" : {"default": "~/software/dev/workspace/micc/cookiecutter-mypackage"
,"text" :"location of the cookiecutter template"
},
"py" : {"default":"py"
,"text" :"python file extension"
}
"project_name": "micc"
, "package_name": "micc"
, "full_name": "Engelbert Tijskens"
, "email": "engelbert.tijskens@uantwerpen.be"
, "github_username": "etijskens"
, "version": "0.0.0"
, "github_repo": "{{ cookiecutter.project_name }}"
, "default_branch": "master"
, "sphinx_html_theme": "sphinx_rtd_theme"
, "open_source_license": "MIT license"
, "project_short_description": "A Python project manager"
}
6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ homepage = "https://github.com/etijskens/micc"

keywords = ['packaging', 'poetry']

# packages = [
# { include = "micc" },
# ]
#include = ["templates/**/*"]
build = "micc_custom_build.py"

[tool.poetry.dependencies]
python = "^3.7"
click = "^7.0"
Expand Down

0 comments on commit 9580554

Please sign in to comment.