Skip to content

Commit 7ade909

Browse files
committedOct 16, 2015
[v0.4.7b0] Bump version to v0.4.7b0.
1 parent e12c55b commit 7ade909

File tree

2 files changed

+29
-14
lines changed

2 files changed

+29
-14
lines changed
 

‎README.md

+22-5
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,30 @@ Core GraphQL Library for Python
1010

1111
## Project Status
1212

13-
**This project is nearly in Beta status. Use in production at your own caution.**
14-
15-
We are currently focusing on porting [graphql-js](https://github.com/graphql/graphql-js) to Python. This library incldes core features only that other packages within the [graphql-python](https://github.com/graphql-python/) organization shall build upon.
13+
**This in Beta status. Use in production at your own caution.**
1614

15+
We are currently focusing on porting [graphql-js](https://github.com/graphql/graphql-js) to Python.
16+
This library includes core features only that other packages within the [graphql-python](https://github.com/graphql-python/) organization shall build upon.
1717
We are currently targeting feature parity with `v0.4.7` of the reference implementation.
1818

1919
Please see [issues](https://github.com/graphql-python/graphql-core/issues) for the progress.
2020

21-
## Original work
21+
## Getting Started
22+
23+
An overview of the GraphQL language is available in the
24+
[README](https://github.com/facebook/graphql/blob/master/README.md) for the
25+
[Specification for GraphQL](https://github.com/facebook/graphql).
26+
The overview describes a simple set of GraphQL examples that exist as [tests](tests/core_starwars)
27+
in this repository. A good way to get started is to walk through that README and the corresponding tests
28+
in parallel.
29+
30+
### Using `graphql-core`
2231

23-
This project is a community fork of [graphqllib](https://github.com/dittos/graphqllib) by [@dittos](https://github.com/dittos/).
32+
Install from pip:
33+
34+
```sh
35+
pip install graphql-core
36+
```
2437

2538
## Current Maintainer
2639
* [@jhgg](https://github.com/jhgg/)
@@ -35,3 +48,7 @@ This project is a community fork of [graphqllib](https://github.com/dittos/graph
3548
## License
3649

3750
[MIT License](https://github.com/graphql-python/graphql-core/blob/master/LICENSE)
51+
52+
## Original work
53+
54+
This project is a community fork of [graphqllib](https://github.com/dittos/graphqllib) by [@dittos](https://github.com/dittos/).

‎setup.py

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,15 @@
22

33
setup(
44
name='graphql-core',
5-
version='0.1a4',
5+
version='0.4.7b0',
66
description='GraphQL implementation for Python',
7-
87
url='https://github.com/graphql-python/graphql-core',
9-
10-
author='GraphQL Python',
8+
download_url='https://github.com/graphql-python/graphql-core/releases',
9+
author='Jake Heinz',
1110
author_email='me' '@' 'jh.gg',
12-
1311
license='MIT',
14-
1512
classifiers=[
16-
'Development Status :: 3 - Alpha',
13+
'Development Status :: 4 - Beta',
1714
'Intended Audience :: Developers',
1815
'Topic :: Software Development :: Libraries',
1916
'Programming Language :: Python :: 2',
@@ -23,12 +20,13 @@
2320
'Programming Language :: Python :: 3.4',
2421
'Programming Language :: Python :: 3.5',
2522
'Programming Language :: Python :: Implementation :: PyPy',
23+
'License :: OSI Approved :: MIT License',
24+
'Topic :: Database :: Front-Ends',
25+
'Topic :: Internet :: WWW/HTTP',
2626
],
2727

2828
keywords='api graphql protocol rest',
29-
3029
packages=find_packages(exclude=['tests', 'tests_py35']),
31-
3230
install_requires=['six>=1.10.0'],
3331
tests_require=['pytest>=2.7.3', 'gevent==1.1b5', 'six>=1.10.0'],
3432
extras_require={

0 commit comments

Comments
 (0)
Please sign in to comment.