Skip to content
This repository was archived by the owner on Jun 29, 2023. It is now read-only.

Commit 85c50f2

Browse files
committed
change name to mvg_api
1 parent 49f3a2a commit 85c50f2

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python_mvg_departures
1+
# python_mvg_api
22

33
A library for fetching departures, routes and service interruptions from Munich Transport Authority MVG, using the newer JSON-api on mvg.de
44

doc/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ qthelp:
9191
@echo
9292
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
9393
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
94-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/python_mvg_departures.qhcp"
94+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/python_mvg_api.qhcp"
9595
@echo "To view the help file:"
96-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/python_mvg_departures.qhc"
96+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/python_mvg_api.qhc"
9797

9898
.PHONY: applehelp
9999
applehelp:
@@ -110,8 +110,8 @@ devhelp:
110110
@echo
111111
@echo "Build finished."
112112
@echo "To view the help file:"
113-
@echo "# mkdir -p $$HOME/.local/share/devhelp/python_mvg_departures"
114-
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/python_mvg_departures"
113+
@echo "# mkdir -p $$HOME/.local/share/devhelp/python_mvg_api"
114+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/python_mvg_api"
115115
@echo "# devhelp"
116116

117117
.PHONY: epub

doc/conf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
#
4-
# python_mvg_departures documentation build configuration file, created by
4+
# python_mvg_api documentation build configuration file, created by
55
# sphinx-quickstart on Tue Nov 8 21:17:56 2016.
66
#
77
# This file is execfile()d with the current directory set to its
@@ -57,7 +57,7 @@
5757
master_doc = 'index'
5858

5959
# General information about the project.
60-
project = 'python_mvg_departures'
60+
project = 'python_mvg_api'
6161
copyright = '2016, Adrian'
6262
author = 'Adrian'
6363

@@ -142,7 +142,7 @@
142142
# The name for this set of Sphinx documents.
143143
# "<project> v<release> documentation" by default.
144144
#
145-
# html_title = 'python_mvg_departures v1.1'
145+
# html_title = 'python_mvg_api v1.1'
146146

147147
# A shorter title for the navigation bar. Default is the same as html_title.
148148
#
@@ -242,7 +242,7 @@
242242
# html_search_scorer = 'scorer.js'
243243

244244
# Output file base name for HTML help builder.
245-
htmlhelp_basename = 'python_mvg_departuresdoc'
245+
htmlhelp_basename = 'python_mvg_apidoc'
246246

247247
# -- Options for LaTeX output ---------------------------------------------
248248

@@ -268,7 +268,7 @@
268268
# (source start file, target name, title,
269269
# author, documentclass [howto, manual, or own class]).
270270
latex_documents = [
271-
(master_doc, 'python_mvg_departures.tex', 'python\\_mvg\\_departures Documentation',
271+
(master_doc, 'python_mvg_api.tex', 'python\\_mvg\\_departures Documentation',
272272
'Adrian', 'manual'),
273273
]
274274

@@ -310,7 +310,7 @@
310310
# One entry per manual page. List of tuples
311311
# (source start file, name, description, authors, manual section).
312312
man_pages = [
313-
(master_doc, 'python_mvg_departures', 'python_mvg_departures Documentation',
313+
(master_doc, 'python_mvg_api', 'python_mvg_api Documentation',
314314
[author], 1)
315315
]
316316

@@ -325,8 +325,8 @@
325325
# (source start file, target name, title, author,
326326
# dir menu entry, description, category)
327327
texinfo_documents = [
328-
(master_doc, 'python_mvg_departures', 'python_mvg_departures Documentation',
329-
author, 'python_mvg_departures', 'One line description of project.',
328+
(master_doc, 'python_mvg_api', 'python_mvg_api Documentation',
329+
author, 'python_mvg_api', 'One line description of project.',
330330
'Miscellaneous'),
331331
]
332332

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
.. python_mvg_departures documentation master file, created by
1+
.. python_mvg_api documentation master file, created by
22
sphinx-quickstart on Tue Nov 8 21:17:56 2016.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
python_mvg_departures – Munich Public Transport made simple
6+
python_mvg_api – Munich Public Transport made simple
77
===========================================================
88

99

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Library for fetching departure and route data from the Munich public transport organisation MVG
22
33
Github:
4-
https://github.com/leftshift/python_mvg_departures
4+
https://github.com/leftshift/python_mvg_api
55
Docs:
66
http://python-mvg-departures.readthedocs.io/en/latest/
77
"""
@@ -23,7 +23,7 @@
2323
version='1.1.0',
2424
description='Library for fetching departure and route data from the Munich public transport organisation MVG',
2525
long_description=long_description,
26-
url='https://github.com/leftshift/python_mvg_departures',
26+
url='https://github.com/leftshift/python_mvg_api',
2727

2828
author='leftshift',
2929
author_email='[email protected]',

0 commit comments

Comments
 (0)