diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..220844c --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,9 @@ +**Describe what happened:** + + +**Describe what you expected:** + + +**Steps to reproduce the issue:** + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..c40559c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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? + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..ab36fe3 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing + +Please, open issues and submit PRs on https://github.com/DataDog/go-python3 using the provided templates. \ No newline at end of file diff --git a/README.md b/README.md index 4c454cb..e6bfbff 100644 --- a/README.md +++ b/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 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 ---