File tree 3 files changed +21
-6
lines changed
3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change
1
+ include LICENSE
1
2
include README.md
3
+ include CONTRIBUTING.md
4
+
2
5
recursive-include flask_graphql/static *
3
6
recursive-include flask_graphql/templates *
7
+ recursive-include tests *.py
8
+
9
+ include Makefile
10
+
11
+ include .coveragerc
12
+ include tox.ini
13
+
14
+ global-exclude *.py[co] __pycache__
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
install_requires = [
4
- "graphql-core>=2.3,<3" ,
5
4
"flask>=0.7.0" ,
5
+ "graphql-core>=2.3,<3" ,
6
6
"graphql-server-core>=1.1,<2" ,
7
7
]
8
8
9
9
tests_requires = [
10
10
'pytest>=2.7.2' ,
11
11
'pytest-cov==2.8.1' ,
12
12
'pytest-flask>=0.10.0' ,
13
- 'graphql-core>=2.1,<3' ,
14
- 'graphql-server-core>=1.1,<2' ,
15
- 'Flask>=0.10.0' ,
16
13
]
17
14
18
15
dev_requires = [
19
16
'flake8==3.7.9' ,
20
- 'isort<4.0.0'
17
+ 'isort<4.0.0' ,
18
+ 'check-manifest>=0.40,<1' ,
21
19
] + tests_requires
22
20
23
21
setup (
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
3
py{27,35,36,37}
4
- flake8,import-order
4
+ flake8,import-order,manifest
5
5
; requires = tox-conda
6
6
7
7
[testenv]
@@ -24,3 +24,9 @@ basepython=python3.6
24
24
deps = -e.[dev]
25
25
commands =
26
26
isort --check-only flask_graphql/ -rc
27
+
28
+ [testenv:manifest]
29
+ basepython = python3.6
30
+ deps = -e.[dev]
31
+ commands =
32
+ check-manifest -v
You can’t perform that action at this time.
0 commit comments