Skip to content

Commit

Permalink
populate
Browse files Browse the repository at this point in the history
  • Loading branch information
revesansparole committed Jun 1, 2016
0 parents commit e113601
Show file tree
Hide file tree
Showing 28 changed files with 1,111 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[html]
title = VersionClimber_test1's coverage
directory = build/htmlcov
[run]
source = VersionClimber_test1
[report]
exclude_lines =
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplemented
raise NotImplementedError
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# {{pkglts github,
*.py[cod]

# pkglts files
.pkglts/info.log*

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64

# editors
.idea


# coverage
.coverage





# }}

# user defined

Empty file added .pkglts/clean.no
Empty file.
40 changes: 40 additions & 0 deletions .pkglts/pkg_cfg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"_pkglts": {
"auto_install": true,
"install_front_end": "stdout",
"use_prompts": false
},
"base": {
"namespace": null,
"owner": "moi",
"pkgname": "VersionClimber_test1",
"url": null
},
"coverage": {},
"doc": {
"description": "belle petite description",
"keywords": []
},
"github": {
"project": "{{key, base.pkgname}}"
},
"license": {
"name": "cecill-c",
"organization": "organization",
"project": "{{key, base.pkgname}}",
"year": 2015
},
"pysetup": {
"author_email": "[email protected]",
"author_name": "{{key, base.owner}}",
"intended_versions": [
"27"
]
},
"test": {},
"version": {
"major": 0,
"minor": 1,
"post": 0
}
}
46 changes: 46 additions & 0 deletions .pkglts/pkg_hash.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"./.coveragerc": [],
"./.gitignore": [
"+K/4XGP2Peb5jWR7nzmpli9QQT/NXtwbXHyE3BnTHOEAdwTiRpmD0k++rjO/416VXZCr7l+3j3X8YUhN+Ku0MA=="
],
"./AUTHORS.rst": [],
"./CONTRIBUTING.rst": [],
"./HISTORY.rst": [],
"./LICENSE": [
"K+/cXPOoUd3kCV74oh3eAd4jEM1Zl5ycOadeYhk++UgVDTAptzaSeEuVaeT1wD8qp3mxw2UXkNVnXY9uD0bEtg=="
],
"./MANIFEST.in": [
"68xb80xnCuwiJiFFi7EqNpTciZvvEP0Qf7as6Cf85I3B0c9+6A33Q9moDX+cDIOPye6ghsIa9oi2a6ee29h6zA=="
],
"./README.rst": [
"NpInImcdK7HQFLVdzLlDEZbA9uAEZaKM6lTCUCfQi5aOf93nTfnCh9DJp9Dr0ZWsxXLXTQrH3g+rbgh7kRECnA=="
],
"./doc/authors.rst": [],
"./doc/contributing.rst": [],
"./doc/history.rst": [],
"./doc/index.rst": [],
"./doc/installation.rst": [],
"./doc/readme.rst": [],
"./doc/usage.rst": [],
"./dvlpt_requirements.txt": [
"AHkzNmO/PAhd7qdoqulrJA+5es0952Vofo83jWkrB9MZwoFPuVceD5ZKFHMSEdbpO+7edmGjHk3D3BXcyZs0Hw=="
],
"./requirements.txt": [
"vmiIOMqGhuXJBom/KrWFzvETfJmbSMcLkvZ6XDTcFWl7XRHJgu1tcb4eHn97TgcziEqpfD96M5qO0DV3z3S+CQ=="
],
"./setup.cfg": [
"5XKtcGF4Ys+iMAZNT8NGLEA0W5THtn8de1Yt++IZpZCLedMN33rl2xyt2/cHgVCiU5mM8oX6hruZby6uxLLEoQ=="
],
"./setup.py": [
"IOOGlLm8FxzoI4QptJlN/rAiJ+6YDpPME7nY/I8utB7FCQvzRaMfSD1I8YyRUmDLnmZLB1joV99lJYqIoE95Pw==",
"6tA9s9cbDHz4mx0PGt+gMLM9HamuOYqFGjwc7LYZcM72XjiUaG0A7g6hNS+gy8cS0FyZDnf46GLNwx0mNZUs7Q=="
],
"./src/VersionClimber_test1/__init__.py": [
"bXi4YRtInDLkaTvGi4V/ZIZpKXGCIgIw/Qm7wX5YZ+tM5kkkAAGCzzuDhxJDzcpoWKBE1UxDj7mT+40YH1DZQA==",
"fIn+GWAvhWfY/9NV/Sw6VXI4UIvx1OTgGxXQ1U5+9JFQ4vhuETzkaQvz8W4M9rMDYlL0vAeRmP2p2DyMgcvb9A=="
],
"./src/VersionClimber_test1/version.py": [
"9u2W46jEMEMq3ZJFhNBSDLcfV8R73vM1FPWlZz2LsxyOwW1/0fpDM16Yxig6tFhfdhNxz+Qw8gX0btUZqB898w=="
],
"./test/__init__.py": []
}
Empty file added .pkglts/regenerate.no
Empty file.
15 changes: 15 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
=======
Credits
=======

Development Lead
----------------


* base.author_name <base.author_email>


Contributors
------------

None yet. Why not be the first?
120 changes: 120 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
============
Contributing
============

Contributions are welcome, and they are greatly appreciated! Every
little bit helps, and credit will always be given.


You can contribute in many ways:

Types of Contributions
----------------------

Report Bugs
~~~~~~~~~~~

Report bugs at issues_.

If you are reporting a bug, please include:

* Your operating system name and version.
* Any details about your local setup that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.

Fix Bugs
~~~~~~~~

Look through the GitHub issues for bugs. Anything tagged with "bug"
is open to whoever wants to implement it.

Implement Features
~~~~~~~~~~~~~~~~~~

Look through the GitHub issues for features. Anything tagged with "feature"
is open to whoever wants to implement it.

Write Documentation
~~~~~~~~~~~~~~~~~~~

pkglts could always use more documentation, whether as part of the
official pkglts docs, in docstrings, or even on the web in blog posts,
articles, and such.

Submit Feedback
~~~~~~~~~~~~~~~

The best way to send feedback is to file an issue at issues_.

If you are proposing a feature:

* Explain in detail how it would work.
* Keep the scope as narrow as possible, to make it easier to implement.
* Remember that this is a volunteer-driven project, and that contributions
are welcome :)

Get Started!
------------

Ready to contribute? Here's how to set up `VersionClimber_test1` for local development.

1. Fork the `VersionClimber_test1` repo on GitHub.
2. Clone your fork locally::

$ git clone [email protected]:your_name_here/VersionClimber_test1.git

3. Install your local copy into a virtualenv. Assuming you have virtualenv_
installed, this is how you set up your fork for local development::

$ virtualenv dvlpt
$ dvlpt/script/activate
(dvlpt)$ python setup.py develop

4. Create a branch for local development (wip stands for work in progress)::

(dvlpt)$ git checkout -b wip_name-of-your-bugfix-or-feature

Now you can make your changes locally.

5. When you're done making changes, check that your changes pass flake8 and the
tests, including testing other Python versions with tox::

(dvlpt)$ cd VersionClimber_test1
(dvlpt) VersionClimber_test1$ flake8
(dvlpt) VersionClimber_test1$ nosetests
(dvlpt) VersionClimber_test1$ tox

To get flake8 and tox, just pip install them into your virtualenv.

6. Commit your changes and push your branch to GitHub::

$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin wip_name-of-your-bugfix-or-feature

7. Submit a pull request through the GitHub website.

Pull Request Guidelines
-----------------------

Before you submit a pull request, check that it meets these guidelines:

1. The pull request should include tests.
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.7, 3.4, and 3.5. Check
https://travis-ci.org/github.owner/VersionClimber_test1/pull_requests
and make sure that the tests pass for all supported Python versions.

Tips
----

To run a subset of tests::

$ nosetests test/test_XXX



.. _issues: github.url/issues
.. _virtualenv: https://pypi.python.org/pypi/virtualenv
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. :changelog:
History
-------


creation (doc.creation_date)
-------------------------------------

* First release on PyPI.
Loading

0 comments on commit e113601

Please sign in to comment.