Skip to content

Commit

Permalink
Add more Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
apiad committed Jan 27, 2019
1 parent 86d6747 commit 40f759c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
before_install:
- pip install pytest pytest-cov
- pip install coveralls
- pip install flask
script:
- python -m pytest
after_success:
Expand Down
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import setuptools

with open("Readme.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="jsonapi",
version="0.2.1",
author="Alejandro Piad",
author_email="apiad@apiad.net",
description="A minimalistic JSON API framework in Python with support for graphql-style queries.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apiad/jsonapi",
packages=setuptools.find_packages('jsonapi'),
classifiers=[
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 40f759c

Please sign in to comment.