Skip to content

Commit dca996e

Browse files
committed
fix build issue by adding MANIFEST.in
1 parent bd34326 commit dca996e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include README.md

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ Authorization tokens can be added to the request using the client's `inject_toke
3535
```py
3636
client.inject_token('very-long-and-secure-token')
3737
```
38-
which defaults to http header name 'Authorization'. An alternative http header name for the token can be set by passing in the alternative header name, e.g. for 'x-api-key':
38+
39+
which defaults to http header name `Authorization`.
40+
An alternative http header name for the token can be set by passing in the alternative header name, e.g. for `x-api-key`:
3941

4042
```py
4143
client.inject_token('very-long-and-secure-token','x-api-key')
4244
```
4345

44-
4546
## License
4647

4748
[MIT License](http://opensource.org/licenses/MIT)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setup(name='graphqlclient',
7-
version='0.2.2',
7+
version='0.2.3',
88
description='Simple GraphQL client for Python 2.7+',
99
long_description=long_description,
1010
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)