File tree Expand file tree Collapse file tree 10 files changed +14
-598
lines changed Expand file tree Collapse file tree 10 files changed +14
-598
lines changed Original file line number Diff line number Diff line change 4
4
- 2.7
5
5
install :
6
6
- pip install pytest pytest-cov coveralls flake8
7
- - pip install -e .[django]
7
+ - pip install -e .
8
8
script :
9
9
- py.test --cov=graphql
10
10
- flake8
Original file line number Diff line number Diff line change @@ -5,11 +5,16 @@ GraphQL implementation for Python
5
5
[ ![ Build Status] ( https://travis-ci.org/dittos/graphql-py.svg?branch=master )] ( https://travis-ci.org/dittos/graphql-py )
6
6
[ ![ Coverage Status] ( https://coveralls.io/repos/dittos/graphql-py/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/dittos/graphql-py?branch=master )
7
7
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 )
Original file line number Diff line number Diff line change 1
- from .api import Schema # noqa
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -48,12 +48,6 @@ def run_tests(self):
48
48
49
49
install_requires = [],
50
50
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
- },
57
51
58
52
cmdclass = {'test' : PyTest },
59
53
)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments