Skip to content

Commit

Permalink
Final changes before new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-Gon committed Sep 15, 2020
1 parent 884e01a commit 3f571d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,11 @@ Please note that the 'pyfdc' project is released with a
[Contributor Code of Conduct](.github/CODE_OF_CONDUCT.md).
By contributing to this project, you agree to abide by its terms.

[See also](https://samnicholls.net/2016/06/15/how-to-sphinx-readthedocs/) for a guide on Sphinx documentation.
[See also](https://samnicholls.net/2016/06/15/how-to-sphinx-readthedocs/) for a guide on Sphinx documentation.

* Releasing
- Make `dist` with `python setup.py sdist` at the very minimum. Ensure everything necessary is included in
`Manifest.in`.
- Upload `dist` to test.pypi.org with `twine upload --repository-url https://test.pypi.org/legacy/ dist/*`
- If everything looks good, upload to pypi.org with `twine upload dist/*`

4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include README.md
include README.rst
include docs/*
include examples/*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

setup(name='cytounet',
version="0.2.0",
description='A Keras-Tensorflow based Unet for Cyto Image Segmentation',
description='Deep Learning based Cell Segmentation',
url="http://www.github.com/Nelson-Gon/cytounet",
download_url="https://github.com/Nelson-Gon/cytounet/archive/v0.1.0.zip",
download_url="https://github.com/Nelson-Gon/cytounet/archive/v0.2.0.zip",
author='Nelson Gonzabato',
author_email='gonzabato@hotmail.com',
license='MIT',
Expand Down

0 comments on commit 3f571d3

Please sign in to comment.