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

Commit 75bad43

Browse files
committed
changed name to mvg_api
1 parent 79273b7 commit 75bad43

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding=utf-8
22

3-
from mvg import *
3+
from mvg_api import *
44

55
obersendling = Station("Obersendling")
66
departures = obersendling.get_departures()
File renamed without changes.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long_description = f.read()
2020

2121
setup(
22-
name='mvg_departures',
22+
name='mvg_api',
2323
version='1.0.0',
2424
description='Library for fetching departure and route data from the Munich public transport organisation MVG',
2525
long_description=long_description,
@@ -31,8 +31,8 @@
3131
classifiers=[
3232
'Development Status :: 4 - Beta',
3333
'License :: OSI Approved :: MIT License',
34-
'Intended Audience :: Developers'
35-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
34+
'Intended Audience :: Developers',
35+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3636

3737
'Programming Language :: Python :: 2.7',
3838
'Programming Language :: Python :: 3',
@@ -41,6 +41,6 @@
4141
'Programming Language :: Python :: 3.5',
4242
],
4343

44-
packages=['mvg'],
44+
packages=['mvg_api'],
4545
install_requires=['requests'],
4646
)

0 commit comments

Comments
 (0)