Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshdtu committed Mar 11, 2021
1 parent bb7052a commit a5463e2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ python:
- 3.9
- 3.8
- 3.7
- 3.6
- 3.5

# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U tox-travis
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Did someone say features?

* Cross-platform: Windows, Mac, and Linux are officially supported.

* Works with Python 3.5, 3.6, 3.7, 3.8, 3.9 and PyPy.
* Works with Python 3.7, 3.8, 3.9 and PyPy.

* Supports RESTful APIs over mongodb datasource using Python Eve.

Expand Down
16 changes: 13 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import os
import glob
import shutil
from collections import OrderedDict


description = "A simple python web framework for creating RESTful and JSON-RPC services"
Expand Down Expand Up @@ -42,16 +43,18 @@
author_email="ashutoshdtu@gmail.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL-2.0",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description=description,
entry_points={
Expand All @@ -74,6 +77,13 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/eazyly/eazyserver",
project_urls=OrderedDict(
(
("Documentation", "http://eazyserver.readthedocs.io"),
("Code", "https://github.com/eazyly/eazyserver"),
("Issue tracker", "https://github.com/eazyly/eazyserver/issues"),
)
),
version=version,
zip_safe=False,
)
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[tox]
envlist = py35, py36, py37, py38, py39, flake8
envlist = py37, py38, py39, flake8

[travis]
python =
3.9: py39
3.8: py38
3.7: py37
3.6: py36
3.5: py35

[testenv:flake8]
basepython = python
Expand Down

0 comments on commit a5463e2

Please sign in to comment.