Skip to content

Commit 80d91a6

Browse files
committed
chore: add check manifest to dev dependencies
1 parent b798de6 commit 80d91a6

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

MANIFEST.in

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
include LICENSE
12
include README.md
3+
include CONTRIBUTING.md
4+
25
recursive-include flask_graphql/static *
36
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__

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
from setuptools import setup, find_packages
22

33
install_requires = [
4-
"graphql-core>=2.3,<3",
54
"flask>=0.7.0",
5+
"graphql-core>=2.3,<3",
66
"graphql-server-core>=1.1,<2",
77
]
88

99
tests_requires = [
1010
'pytest>=2.7.2',
1111
'pytest-cov==2.8.1',
1212
'pytest-flask>=0.10.0',
13-
'graphql-core>=2.1,<3',
14-
'graphql-server-core>=1.1,<2',
15-
'Flask>=0.10.0',
1613
]
1714

1815
dev_requires = [
1916
'flake8==3.7.9',
20-
'isort<4.0.0'
17+
'isort<4.0.0',
18+
'check-manifest>=0.40,<1',
2119
] + tests_requires
2220

2321
setup(

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{27,35,36,37}
4-
flake8,import-order
4+
flake8,import-order,manifest
55
; requires = tox-conda
66

77
[testenv]
@@ -24,3 +24,9 @@ basepython=python3.6
2424
deps = -e.[dev]
2525
commands =
2626
isort --check-only flask_graphql/ -rc
27+
28+
[testenv:manifest]
29+
basepython = python3.6
30+
deps = -e.[dev]
31+
commands =
32+
check-manifest -v

0 commit comments

Comments
 (0)