Skip to content

Commit f35e460

Browse files
author
nambrosini
committed
Merge branch 'master' of github.com:Ambro17/graphql-schema-diff
2 parents 61703b6 + 6ceea7c commit f35e460

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,11 @@ docs:
2222
# Remove nested dir as github pages expects an index.html on docs folder \
2323
cp -r docs/schemadiff/* docs && rm -rf docs/schemadiff && echo "📚 Docs updated successfully ✨"
2424

25+
publish:
26+
pip install --upgrade setuptools wheel && \
27+
python3 setup.py sdist bdist_wheel && \
28+
python3 -m pip install --upgrade twine && \
29+
python3 -m twine upload dist/* && \
30+
rm -rf dist/ build/
31+
32+

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
graphql-core==3.0.1
2-
attrs==19.3.0
1+
. # Instruct setuptools to run 'python setup.py install'

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ pytest
44
pytest-cov
55
codecov
66
pdoc3==0.9.1
7-
-e . # Install schemadiff for local development
7+
-e . # Install schemadiff in editable form for local development

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
with open("README.md", "r") as f:
55
long_description = f.read()
66

7-
with open("requirements.txt", "r") as f:
8-
requirements = f.read()
9-
107
package_name = "graphql-schema-diff"
118

129
setup(
1310
name=package_name,
14-
version="1.1.0",
11+
version="1.1.1",
1512
author="Nahuel Ambrosini",
1613
author_email="[email protected]",
1714
description="Compare GraphQL Schemas",
1815
long_description=long_description,
1916
long_description_content_type="text/markdown",
2017
url="https://github.com/Ambro17/schemadiff",
2118
packages=find_packages(include=['schemadiff*'], exclude=['tests', 'tests.*']),
22-
install_requires=requirements,
19+
install_requires=[
20+
"graphql-core>=3.0.1",
21+
"attrs>=19.3.0",
22+
],
2323
python_requires='>=3.6',
2424
entry_points={
2525
'console_scripts': [

0 commit comments

Comments
 (0)