Skip to content

Commit

Permalink
Merge 5c67eb9 into 40111df
Browse files Browse the repository at this point in the history
  • Loading branch information
mkouhei committed Apr 26, 2020
2 parents 40111df + 5c67eb9 commit e07b02f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -31,7 +31,7 @@ Features

* `pycodestyle <https://pypi.python.org/pypi/pycodestyle>`_
* `pytest-cov <https://pypi.python.org/pypi/pytest-cov>`_
* `pytest-flakes <https://pypi.python.org/pypi/pytest-flakes>`_
* `pytest-flake8 <https://pypi.python.org/pypi/pytest-flake8>`_
* `Pylint <http://www.pylint.org/>`_
* `pydocstyle <https://pypi.org/project/pydocstyle/>`_

Expand Down
1 change: 1 addition & 0 deletions bootstrap_py/templates/setup.py.j2
Expand Up @@ -70,6 +70,7 @@ setup(name='{{ name }}',
version='{{ version }}',
description='{{ description }}',
long_description=long_description,
long_description_content_type='text/x-rst',
author='{{ author }}',
author_email='{{ email }}',
url='{{ url }}',
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -51,7 +51,7 @@ def read_content(filepath):


classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
Expand Down Expand Up @@ -87,6 +87,7 @@ def read_content(filepath):
version=__version__,
description='Bootstrap Python package',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Kouhei Maeda',
author_email='mkouhei@palmtb.net',
url='https://github.com/mkouhei/bootstrap-py',
Expand Down
3 changes: 2 additions & 1 deletion utils/pre-commit
Expand Up @@ -6,6 +6,7 @@ rootdir=$(git rev-parse --show-toplevel)
rm -rf dist .cache *.egg-info _build *.tests
find ./ -name '*.pyc' -delete
tox
python setup.py check -r
python setup.py sdist
twine check dist/*
which rst2html5.py && python setup.py --long-description | rst2html5.py > /dev/null
)

0 comments on commit e07b02f

Please sign in to comment.