Skip to content

Commit 3e59063

Browse files
committed
Start here.
0 parents  commit 3e59063

28 files changed

+1293
-0
lines changed

.coveragerc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
source = vininfo/
3+
omit = vininfo/cli.py

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.project
2+
.pydevproject
3+
.idea
4+
.tox
5+
__pycache__
6+
*.pyc
7+
*.pyo
8+
*.egg-info
9+
docs/_build/
10+

.hgignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
syntax:glob
2+
3+
.project
4+
.pydevproject
5+
.idea
6+
.tox
7+
__pycache__
8+
*.pyc
9+
*.pyo
10+
*.egg-info
11+
docs/_build/
12+

.landscape.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
strictness: medium
2+
3+
autodetect: yes
4+
5+
ignore-paths:
6+
- docs
7+
- tests

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
3+
python:
4+
- 3.6
5+
- 3.5
6+
- 3.4
7+
- 2.7
8+
9+
install:
10+
- pip install pytest coveralls
11+
12+
script:
13+
- coverage run --source=vininfo setup.py test
14+
15+
after_success:
16+
- coveralls

AUTHORS

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
vininfo authors
2+
===============
3+
4+
Created by Igor `idle sign` Starikov.
5+
6+
7+
Contributors
8+
------------
9+
10+
Here could be your name.
11+
12+
13+
14+
Translators
15+
-----------
16+
17+
Here could be your name.
18+

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
vininfo changelog
2+
=================
3+
4+
5+
Unreleased
6+
----------
7+
+ Basic functionality.
8+

CONTRIBUTING

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
vininfo contributing
2+
====================
3+
4+
5+
Submit issues
6+
-------------
7+
8+
If you spotted something weird in application behavior or want to propose a feature you are welcome.
9+
10+
11+
Write code
12+
----------
13+
If you are eager to participate in application development and to work on an existing issue (whether it should
14+
be a bugfix or a feature implementation), fork, write code, and make a pull request right from the forked project page.
15+
16+
17+
Spread the word
18+
---------------
19+
20+
If you have some tips and tricks or any other words that you think might be of interest for the others — publish it
21+
wherever you find convenient.
22+
23+
24+
See also: https://github.com/idlesign/vininfo
25+

INSTALL

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
vininfo installation
2+
====================
3+
4+
5+
Python ``pip`` package is required to install ``vininfo``.
6+
7+
8+
From sources
9+
------------
10+
11+
Use the following command line to install ``vininfo`` from sources directory (containing setup.py):
12+
13+
pip install .
14+
15+
or
16+
17+
python setup.py install
18+
19+
20+
From PyPI
21+
---------
22+
23+
Alternatively you can install ``vininfo`` from PyPI:
24+
25+
pip install vininfo
26+
27+
28+
Use `-U` flag for upgrade:
29+
30+
pip install -U vininfo
31+

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2018, Igor `idle sign` Starikov
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of the vininfo nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+

0 commit comments

Comments
 (0)