Skip to content

Commit 7eb5a26

Browse files
committed
Remove incomplete code from repo and update readme
1 parent 2d66d20 commit 7eb5a26

File tree

10 files changed

+14
-598
lines changed

10 files changed

+14
-598
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python:
44
- 2.7
55
install:
66
- pip install pytest pytest-cov coveralls flake8
7-
- pip install -e .[django]
7+
- pip install -e .
88
script:
99
- py.test --cov=graphql
1010
- flake8

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@ GraphQL implementation for Python
55
[![Build Status](https://travis-ci.org/dittos/graphql-py.svg?branch=master)](https://travis-ci.org/dittos/graphql-py)
66
[![Coverage Status](https://coveralls.io/repos/dittos/graphql-py/badge.svg?branch=master&service=github)](https://coveralls.io/github/dittos/graphql-py?branch=master)
77

8-
## Roadmap
9-
10-
* Port [graphql-js](https://github.com/graphql/graphql-js) to Python: **IN PROGRESS** (see the [issue](https://github.com/dittos/graphql-py/issues/1) for progress)
11-
* Declarative Schema Definition DSL: **IN PROGRESS**
12-
* Django ORM Integration: **IN PROGRESS**
13-
* SQLAlchemy Integration: not yet
14-
* Implement basic query endpoint (WSGI?): not yet
15-
* Refactor to idiomatic Python: not yet
8+
9+
## Project Status
10+
11+
**This project is highly experimental. Please do not use this in production yet.**
12+
13+
I'm currently focusing on porting [graphql-js](https://github.com/graphql/graphql-js) to Python. First release (0.1) will include core features only.
14+
15+
Please see [issues](https://github.com/dittos/graphql-py/issues) for the progress.
16+
17+
18+
## License
19+
20+
[MIT License](https://github.com/dittos/graphql-py/blob/master/LICENSE)

graphql/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
from .api import Schema # noqa

graphql/api.py

Lines changed: 0 additions & 230 deletions
This file was deleted.

graphql/contrib/__init__.py

Whitespace-only changes.

graphql/contrib/django/__init__.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ def run_tests(self):
4848

4949
install_requires=[],
5050
tests_require=['pytest>=2.7.2'],
51-
extras_require={
52-
'django': [
53-
'Django>=1.8.0,<1.9',
54-
'singledispatch>=3.4.0.3',
55-
],
56-
},
5751

5852
cmdclass={'test': PyTest},
5953
)

tests/contrib_django/test_django.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)