Add github templates
parent
1b6a6c24f4
commit
279898b35c
|
@ -0,0 +1,9 @@
|
||||||
|
**Describe what happened:**
|
||||||
|
|
||||||
|
|
||||||
|
**Describe what you expected:**
|
||||||
|
|
||||||
|
|
||||||
|
**Steps to reproduce the issue:**
|
||||||
|
|
||||||
|
|
|
@ -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?
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Contributing
|
||||||
|
|
||||||
|
Please, open issues and submit PRs on https://github.com/DataDog/go-python3 using the provided templates.
|
14
README.md
14
README.md
|
@ -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
|
exposed. Theoretically, you should be able use https://docs.python.org/3/c-api
|
||||||
and know what to type in your ``go`` program.
|
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
|
API
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue