From 78b4aa89162e7195f4daa9db7a5ad9de37b7ef06 Mon Sep 17 00:00:00 2001 From: jdidion Date: Thu, 16 May 2019 10:49:50 -0400 Subject: [PATCH] Include authors, changes, license, and readme in distribution --- CHANGES.md | 4 ++++ pyproject.toml | 11 ++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d8235f8..912c05c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.2 + +* Include authors, changes, readme, and license in distribution. + ## 0.1.1 * Change package name to 'indextools' to avoid collision with existing idxtools package diff --git a/pyproject.toml b/pyproject.toml index 187650b..65b31b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,17 @@ [tool.poetry] name = "indextools" version = "0.1.1" -description = "A toolkit for accelerating genomics using index files. " +description = "A toolkit for accelerating genomics using index files." +license = "MIT" authors = ["John Didion "] +readme = "README.md" +homepage = "https://github.com/dnanexus/indextools" +repository = "https://github.com/dnanexus/indextools.git" +classifiers = ["Development Status :: 4 - Beta"] +include = [ + "AUTHORS.md", + "CHANGES.md", +] [tool.poetry.dependencies] python = "^3.6"