Skip to content

Commit

Permalink
fix flags and python versions for documentation generation for readth…
Browse files Browse the repository at this point in the history
…edocs.io
  • Loading branch information
alainivars committed Jun 12, 2019
1 parent 560a130 commit 49c18f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ Welcome to drf-microservice cookiecutter's documentation!
=========================================================

.. image:: https://api.travis-ci.org/alainivars/drf-microservice.svg?branch=master
:target: http://travis-ci.org/alainivars/drf-microservice
:alt: Build status
:target: http://travis-ci.org/alainivars/drf-microservice
:alt: Build status

.. image:: https://coveralls.io/repos/alainivars/drf-microservice/badge.svg?branch=devel
:target: https://coveralls.io/r/alainivars/drf-microservice?branch=devel
:alt: Test coverage status
.. image:: https://coveralls.io/repos/github/alainivars/drf-microservice/badge.svg?branch=master
:target: https://coveralls.io/github/alainivars/drf-microservice?branch=master
:alt: Test coverage status

.. image:: https://requires.io/github/alainivars/drf-microservice/requirements.svg?branch=master
:target: https://requires.io/github/alainivars/drf-microservice/requirements/?branch=master
:alt: Requirements Status
:target: https://requires.io/github/alainivars/drf-microservice/requirements/?branch=master
:alt: Requirements Status

.. image:: https://img.shields.io/pypi/dm/drf-microservice.svg
:target: https://pypi.python.org/pypi/drf-microservice/
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
zip_safe=False,
test_suite='setuptest.setuptest.SetupTestSuite',
include_package_data=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 2 - Pre-Alpha',
Expand All @@ -36,10 +37,12 @@
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP'
],
)

0 comments on commit 49c18f6

Please sign in to comment.