Skip to content

Commit ad19f7b

Browse files
committed
Rename project to graphqllib
1 parent c2bffcf commit ad19f7b

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# graphql-py
1+
# graphqllib
22

33
GraphQL implementation for Python
44

5-
[![Build Status](https://travis-ci.org/dittos/graphql-py.svg?branch=master)](https://travis-ci.org/dittos/graphql-py)
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)
5+
[![Build Status](https://travis-ci.org/dittos/graphqllib.svg?branch=master)](https://travis-ci.org/dittos/graphqllib)
6+
[![Coverage Status](https://coveralls.io/repos/dittos/graphqllib/badge.svg?branch=master&service=github)](https://coveralls.io/github/dittos/graphqllib?branch=master)
77

88

99
## Project Status
@@ -12,9 +12,9 @@ GraphQL implementation for Python
1212

1313
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.
1414

15-
Please see [issues](https://github.com/dittos/graphql-py/issues) for the progress.
15+
Please see [issues](https://github.com/dittos/graphqllib/issues) for the progress.
1616

1717

1818
## License
1919

20-
[MIT License](https://github.com/dittos/graphql-py/blob/master/LICENSE)
20+
[MIT License](https://github.com/dittos/graphqllib/blob/master/LICENSE)

docs/conf.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# graphql-py documentation build configuration file, created by
3+
# graphqllib documentation build configuration file, created by
44
# sphinx-quickstart on Wed Sep 16 20:08:39 2015.
55
#
66
# This file is execfile()d with the current directory set to its
@@ -52,7 +52,7 @@
5252
master_doc = 'index'
5353

5454
# General information about the project.
55-
project = u'graphql-py'
55+
project = u'graphqllib'
5656
copyright = u'2015, Taeho Kim'
5757
author = u'Taeho Kim'
5858

@@ -206,7 +206,7 @@
206206
#html_search_scorer = 'scorer.js'
207207

208208
# Output file base name for HTML help builder.
209-
htmlhelp_basename = 'graphql-pydoc'
209+
htmlhelp_basename = 'graphqllibdoc'
210210

211211
# -- Options for LaTeX output ---------------------------------------------
212212

@@ -228,7 +228,7 @@
228228
# (source start file, target name, title,
229229
# author, documentclass [howto, manual, or own class]).
230230
latex_documents = [
231-
(master_doc, 'graphql-py.tex', u'graphql-py Documentation',
231+
(master_doc, 'graphqllib.tex', u'graphqllib Documentation',
232232
u'Taeho Kim', 'manual'),
233233
]
234234

@@ -258,7 +258,7 @@
258258
# One entry per manual page. List of tuples
259259
# (source start file, name, description, authors, manual section).
260260
man_pages = [
261-
(master_doc, 'graphql-py', u'graphql-py Documentation',
261+
(master_doc, 'graphqllib', u'graphqllib Documentation',
262262
[author], 1)
263263
]
264264

@@ -272,8 +272,8 @@
272272
# (source start file, target name, title, author,
273273
# dir menu entry, description, category)
274274
texinfo_documents = [
275-
(master_doc, 'graphql-py', u'graphql-py Documentation',
276-
author, 'graphql-py', 'One line description of project.',
275+
(master_doc, 'graphqllib', u'graphqllib Documentation',
276+
author, 'graphqllib', 'One line description of project.',
277277
'Miscellaneous'),
278278
]
279279

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ def run_tests(self):
2323
sys.exit(errno)
2424

2525
setup(
26-
name='graphql-py',
26+
name='graphqllib',
2727
version='0.1a0',
2828

2929
description='GraphQL implementation for Python',
3030

31-
url='https://github.com/dittos/graphql-py',
31+
url='https://github.com/dittos/graphqllib',
3232

3333
author='Taeho Kim',
3434
author_email='dittos' '@' 'gmail.com',

0 commit comments

Comments
 (0)