Skip to content
Snippets Groups Projects
Commit ca3eb3aa authored by spmohanty's avatar spmohanty
Browse files

Remove HISTORY from long description of the package

parent d36712c5
No related branches found
No related tags found
No related merge requests found
...@@ -124,11 +124,11 @@ Deploying ...@@ -124,11 +124,11 @@ Deploying
--------- ---------
A reminder for the maintainers on how to deploy. A reminder for the maintainers on how to deploy.
Make sure all your changes are committed (including an entry in HISTORY.rst). Make sure all your changes are committed .
Then run:: Then run::
$ bumpversion patch # possible: major / minor / patch $ bumpversion patch # possible: major / minor / patch
$ git push $ git push
$ git push --tags $ git push --tags
Travis will then deploy to PyPI if tests pass. (To be configured properly by Mohanty) TODO: Travis will then deploy to PyPI if tests pass. (To be configured properly by Mohanty)
=======
History
=======
0.1.0 (2019-04-03)
------------------
* First release on PyPI.
.. include:: ../HISTORY.rst
...@@ -12,7 +12,6 @@ Welcome to flatland's documentation! ...@@ -12,7 +12,6 @@ Welcome to flatland's documentation!
FAQ FAQ
contributing contributing
authors authors
history
Indices and tables Indices and tables
================== ==================
......
...@@ -12,9 +12,6 @@ assert sys.version_info >= (3, 6) ...@@ -12,9 +12,6 @@ assert sys.version_info >= (3, 6)
with open('README.rst') as readme_file: with open('README.rst') as readme_file:
readme = readme_file.read() readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
# install pycairo on Windows # install pycairo on Windows
if os.name == 'nt': if os.name == 'nt':
p = platform.architecture() p = platform.architecture()
...@@ -107,7 +104,7 @@ setup( ...@@ -107,7 +104,7 @@ setup(
], ],
}, },
install_requires=requirements, install_requires=requirements,
long_description=readme + '\n\n' + history, long_description=readme,
include_package_data=True, include_package_data=True,
keywords='flatland', keywords='flatland',
name='flatland-rl', name='flatland-rl',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment