Skip to content

Commit

Permalink
add CONTRIBUTE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
philopon committed Jun 1, 2018
1 parent abf1ae6 commit ec4756e
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 11 deletions.
24 changes: 24 additions & 0 deletions CONTRIBUTE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Contributing
==

Pull Request
--
1. Open issue and discuss (strongly recommended)
2. Create Pull Request

Points

* one descriptor per one PR
* refer article
* write test

* check values matching with other software or article (required)
* check invariants (if possible)

3. Passing all tests
4. Review
5. Merge

Reporting bugs / Question
--
Please fill [template](/issues/new?template=bugs.md).
32 changes: 22 additions & 10 deletions ISSUE_TEMPLATE/bugs.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,42 @@
# description

# minimal reproduction code (if possible)
Please fill me.

# minimal reproduction code

Please fill me if possible.

# environment

## OS/distribution

Please fill me.

## conda or pip

Please choose conda or pip.

## python version

Please execute the command and paste result.

```.bash
python --version
```

## library version

conda
Please execute the command and paste result.

```.bash
conda list
```
* conda

pip
```.bash
conda list
```

```.bash
pip list
python -c 'import rdkit; print("rdkit " + rdkit.__version__)'
```
* pip

```.bash
python -m pip list
python -c 'import rdkit; print("rdkit " + rdkit.__version__)'
```
1 change: 0 additions & 1 deletion ISSUE_TEMPLATE/question.md

This file was deleted.

0 comments on commit ec4756e

Please sign in to comment.