Add github templates

master
Rémi Calixte 2018-12-13 16:53:40 -05:00 committed by Maxime Mouial
parent 1b6a6c24f4
commit 279898b35c
4 changed files with 38 additions and 0 deletions

9
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,9 @@
**Describe what happened:**
**Describe what you expected:**
**Steps to reproduce the issue:**

12
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,12 @@
### What does this PR do?
A brief description of the change being made with this pull request.
### Motivation
What inspired you to submit this pull request?
### Additional Notes
Anything else we should know when reviewing?

3
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,3 @@
# Contributing
Please, open issues and submit PRs on https://github.com/DataDog/go-python3 using the provided templates.

View File

@ -8,6 +8,20 @@ This package provides a ``go`` package named "python" under which most of the
exposed. Theoretically, you should be able use https://docs.python.org/3/c-api
and know what to type in your ``go`` program.
Currently supports python-3.7+
Install
-------
Simply `go get github.com/DataDog/go-python3`
Build
-----
We will need `pkg-config` and a working `python3` environment to build these bindings. By default `pkg-config` will look at the `python3` library so if you want to choose a specific version just symlink `python-X.Y.pc` to `python3.pc` or use the `PKG_CONFIG_PATH` environment variable.
API
---