Skip to content
Snippets Groups Projects
Commit 13158b70 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

contribution guide, changelog

parent e58c32c8
No related branches found
No related tags found
No related merge requests found
Pipeline #276 passed with stages
in 1 minute and 17 seconds
# v1.0
Nothing there
\ No newline at end of file
Ask your maintainer. Keep _master_ working.
\ No newline at end of file
......@@ -20,11 +20,13 @@ This is a generic scaffold for Python projects that use:
3.2. adjust [setup.py](setup.py)
3.3. adjust [.coveragerc](.coveragerc)
3.4. adjust [license](LICENSE)
3.5. adjust [Vagrantfile](Vagrantfile), or remove it
3.6. adjust [MANIFEST.in](MANIFEST.in) if you have data files
3.7. adjust [docs](docs/)
3.8. adjust [gitlab-ci.yml](.gitlab-ci.yml), especially if your tests require a
Vagrant environment
3.5. adjust or delete [contribution guide](CONTRIBUTING.md)
3.6. adjust or delete [change log](CHANGELOG.md)
3.7. adjust [Vagrantfile](Vagrantfile), or remove it
3.8. adjust [MANIFEST.in](MANIFEST.in) if you have data files
3.9. adjust [docs](docs/)
3.10. adjust [gitlab-ci.yml](.gitlab-ci.yml), especially if your tests require a
Vagrant environment
4. Set up a repository on GitLab
5. Ensure you have _master_ permission on this repository
6. Set `^TOTAL\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+)%$` in
......
......@@ -3,7 +3,7 @@
from setuptools import setup
setup(
name="your-project",
version="0.0",
version="0.0rc0",
author=u'Banana',
author_email='banana@example.com',
description=u'banana banana banana',
......@@ -13,6 +13,9 @@ setup(
data_files=[
],
classifiers=[
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for list of classifiers
'Development Status :: 1 - Planning',
'Programming Language :: Python'
],
tests_require=['nose', 'mock', 'coverage'],
test_suite='nose.collector'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment