Skip to content

Commit 3d607a0

Browse files
committed
Updated requirements. Updated version to 2.0 (final)
1 parent 23fb85c commit 3d607a0

File tree

3 files changed

+29
-32
lines changed

3 files changed

+29
-32
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
/build/
99

1010
/dist/
11+
/.pytest_cache

Diff for: setup.py

+25-29
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,35 @@
11
from setuptools import setup, find_packages
22

3-
required_packages = [
4-
'graphql-core>=2.1rc1',
5-
'flask>=0.7.0',
6-
'graphql-server-core>=1.1rc0'
7-
]
3+
required_packages = ["graphql-core>=2.1", "flask>=0.7.0", "graphql-server-core>=1.1"]
84

95
setup(
10-
name='Flask-GraphQL',
11-
version='2.0rc0',
12-
description='Adds GraphQL support to your Flask application',
13-
long_description=open('README.rst').read(),
14-
url='https://github.com/graphql-python/flask-graphql',
15-
download_url='https://github.com/graphql-python/flask-graphql/releases',
16-
author='Syrus Akbary',
17-
author_email='[email protected]',
18-
license='MIT',
6+
name="Flask-GraphQL",
7+
version="2.0",
8+
description="Adds GraphQL support to your Flask application",
9+
long_description=open("README.rst").read(),
10+
url="https://github.com/graphql-python/flask-graphql",
11+
download_url="https://github.com/graphql-python/flask-graphql/releases",
12+
author="Syrus Akbary",
13+
author_email="[email protected]",
14+
license="MIT",
1915
classifiers=[
20-
'Development Status :: 5 - Production/Stable',
21-
'Intended Audience :: Developers',
22-
'Topic :: Software Development :: Libraries',
23-
'Programming Language :: Python :: 2',
24-
'Programming Language :: Python :: 2.7',
25-
'Programming Language :: Python :: 3',
26-
'Programming Language :: Python :: 3.3',
27-
'Programming Language :: Python :: 3.4',
28-
'Programming Language :: Python :: 3.5',
29-
'Programming Language :: Python :: Implementation :: PyPy',
30-
'License :: OSI Approved :: MIT License',
16+
"Development Status :: 5 - Production/Stable",
17+
"Intended Audience :: Developers",
18+
"Topic :: Software Development :: Libraries",
19+
"Programming Language :: Python :: 2",
20+
"Programming Language :: Python :: 2.7",
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: 3.3",
23+
"Programming Language :: Python :: 3.4",
24+
"Programming Language :: Python :: 3.5",
25+
"Programming Language :: Python :: Implementation :: PyPy",
26+
"License :: OSI Approved :: MIT License",
3127
],
32-
keywords='api graphql protocol rest flask',
33-
packages=find_packages(exclude=['tests']),
28+
keywords="api graphql protocol rest flask",
29+
packages=find_packages(exclude=["tests"]),
3430
install_requires=required_packages,
35-
tests_require=['pytest>=2.7.3'],
31+
tests_require=["pytest>=2.7.3"],
3632
include_package_data=True,
3733
zip_safe=False,
38-
platforms='any',
34+
platforms="any",
3935
)

Diff for: tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ setenv =
88
deps =
99
pytest>=2.7.2
1010
pytest-flask>=0.10.0
11-
graphql-core>=2.1rc1
12-
graphql-server-core>=1.0.dev
11+
graphql-core>=2.1
12+
graphql-server-core>=1.1
1313
Flask>=0.10.0
1414
pytest-cov
1515
commands =
@@ -25,7 +25,7 @@ commands =
2525
basepython=python3.6
2626
deps =
2727
isort
28-
graphql-core>=2.1rc1
28+
graphql-core>=2.1
2929
Flask>=0.10.0
3030
commands =
3131
isort --check-only flask_graphql/ -rc

0 commit comments

Comments
 (0)