Skip to content

Commit

Permalink
Updated requirements. Updated version to 2.0 (final)
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Jul 19, 2018
1 parent 23fb85c commit 3d607a0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 32 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/build/

/dist/
/.pytest_cache
54 changes: 25 additions & 29 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
from setuptools import setup, find_packages

required_packages = [
'graphql-core>=2.1rc1',
'flask>=0.7.0',
'graphql-server-core>=1.1rc0'
]
required_packages = ["graphql-core>=2.1", "flask>=0.7.0", "graphql-server-core>=1.1"]

setup(
name='Flask-GraphQL',
version='2.0rc0',
description='Adds GraphQL support to your Flask application',
long_description=open('README.rst').read(),
url='https://github.com/graphql-python/flask-graphql',
download_url='https://github.com/graphql-python/flask-graphql/releases',
author='Syrus Akbary',
author_email='[email protected]',
license='MIT',
name="Flask-GraphQL",
version="2.0",
description="Adds GraphQL support to your Flask application",
long_description=open("README.rst").read(),
url="https://github.com/graphql-python/flask-graphql",
download_url="https://github.com/graphql-python/flask-graphql/releases",
author="Syrus Akbary",
author_email="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
],
keywords='api graphql protocol rest flask',
packages=find_packages(exclude=['tests']),
keywords="api graphql protocol rest flask",
packages=find_packages(exclude=["tests"]),
install_requires=required_packages,
tests_require=['pytest>=2.7.3'],
tests_require=["pytest>=2.7.3"],
include_package_data=True,
zip_safe=False,
platforms='any',
platforms="any",
)
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ setenv =
deps =
pytest>=2.7.2
pytest-flask>=0.10.0
graphql-core>=2.1rc1
graphql-server-core>=1.0.dev
graphql-core>=2.1
graphql-server-core>=1.1
Flask>=0.10.0
pytest-cov
commands =
Expand All @@ -25,7 +25,7 @@ commands =
basepython=python3.6
deps =
isort
graphql-core>=2.1rc1
graphql-core>=2.1
Flask>=0.10.0
commands =
isort --check-only flask_graphql/ -rc

0 comments on commit 3d607a0

Please sign in to comment.