提交 82b8c502 编写于 作者: J jrzaurin

adjusted MANIFEST and setup for PyPI release

上级 b143de2e
...@@ -2,5 +2,3 @@ include MANIFEST.in ...@@ -2,5 +2,3 @@ include MANIFEST.in
include LICENSE include LICENSE
include VERSION include VERSION
include README.md include README.md
include docs/figures/architecture_1.png
include docs/figures/architecture_2.png
...@@ -84,7 +84,13 @@ the user can use any custom model as long as it has an attribute called ...@@ -84,7 +84,13 @@ the user can use any custom model as long as it has an attribute called
### Installation ### Installation
Install directly from github Install using pip:
```bash
pip install pytorch-widedeep
```
Or install directly from github
```bash ```bash
pip install git+https://github.com/jrzaurin/pytorch-widedeep.git pip install git+https://github.com/jrzaurin/pytorch-widedeep.git
......
0.3.1 0.3.7
\ No newline at end of file \ No newline at end of file
__version__ = "0.3.8" __version__ = "0.3.7"
...@@ -24,14 +24,22 @@ with open(os.path.join(pwd, "VERSION")) as f: ...@@ -24,14 +24,22 @@ with open(os.path.join(pwd, "VERSION")) as f:
# with open("README.md", "r") as f: # with open("README.md", "r") as f:
# long_description = f.read() # long_description = f.read()
long_description = """ long_description ="""
pytorch-widedeep: Modular, flexible package to combine tabular data with text and pytorch-widedeep: Modular and flexible package to combine tabular data with text and
images using Wide and Deep models in Pytorch 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: For a temporal documentation, go to:
https://github.com/jrzaurin/pytorch-widedeep/tree/master/docs https://github.com/jrzaurin/pytorch-widedeep/tree/master/docs
You can find the source code at: You can find the source code at:
https://github.com/jrzaurin/pytorch-widedeep/tree/master/pytorch_widedeep https://github.com/jrzaurin/pytorch-widedeep/tree/master/pytorch_widedeep
""" """
# main setup kw args # main setup kw args
...@@ -39,6 +47,7 @@ setup_kwargs = { ...@@ -39,6 +47,7 @@ setup_kwargs = {
"name": "pytorch-widedeep", "name": "pytorch-widedeep",
"version": version, "version": version,
"description": "Combine tabular data with text and images using Wide and Deep models in Pytorch", "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, "long_description": long_description,
"author": "Javier Rodriguez Zaurin", "author": "Javier Rodriguez Zaurin",
"author_email": "jrzaurin@gmail.com", "author_email": "jrzaurin@gmail.com",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册