From 82b8c502ed2b5a9294cacde3523e121f9f6d3132 Mon Sep 17 00:00:00 2001 From: jrzaurin Date: Sat, 22 Feb 2020 13:35:30 +0000 Subject: [PATCH] adjusted MANIFEST and setup for PyPI release --- MANIFEST.in | 4 +--- README.md | 8 +++++++- VERSION | 2 +- pytorch_widedeep/version.py | 2 +- setup.py | 13 +++++++++++-- 5 files changed, 21 insertions(+), 8 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index ad26785..3ca1d7b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,4 @@ include MANIFEST.in include LICENSE include VERSION -include README.md -include docs/figures/architecture_1.png -include docs/figures/architecture_2.png +include README.md \ No newline at end of file diff --git a/README.md b/README.md index 6061301..48dee3e 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,13 @@ the user can use any custom model as long as it has an attribute called ### Installation -Install directly from github +Install using pip: + +```bash +pip install pytorch-widedeep +``` + +Or install directly from github ```bash pip install git+https://github.com/jrzaurin/pytorch-widedeep.git diff --git a/VERSION b/VERSION index a2268e2..ce4f5af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.1 \ No newline at end of file +0.3.7 \ No newline at end of file diff --git a/pytorch_widedeep/version.py b/pytorch_widedeep/version.py index 4ad67eb..8879c6c 100644 --- a/pytorch_widedeep/version.py +++ b/pytorch_widedeep/version.py @@ -1 +1 @@ -__version__ = "0.3.8" +__version__ = "0.3.7" diff --git a/setup.py b/setup.py index 1588b3c..e72deb9 100644 --- a/setup.py +++ b/setup.py @@ -24,14 +24,22 @@ with open(os.path.join(pwd, "VERSION")) as f: # with open("README.md", "r") as f: # long_description = f.read() -long_description = """ -pytorch-widedeep: Modular, flexible package to combine tabular data with text and +long_description =""" +pytorch-widedeep: Modular and flexible package to combine tabular data with text and images using Wide and Deep models in Pytorch +For an introduction to the package and a quick start, go to: + + https://github.com/jrzaurin/pytorch-widedeep + For a temporal documentation, go to: + https://github.com/jrzaurin/pytorch-widedeep/tree/master/docs + You can find the source code at: + https://github.com/jrzaurin/pytorch-widedeep/tree/master/pytorch_widedeep + """ # main setup kw args @@ -39,6 +47,7 @@ setup_kwargs = { "name": "pytorch-widedeep", "version": version, "description": "Combine tabular data with text and images using Wide and Deep models in Pytorch", + # "long_description_content_type": 'text/markdown', "long_description": long_description, "author": "Javier Rodriguez Zaurin", "author_email": "jrzaurin@gmail.com", -- GitLab