-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed import errors from naming convensions
- Loading branch information
Silver
committed
Mar 7, 2020
1 parent
3bb33ed
commit c402bb3
Showing
5 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .CumulocityPython import CumulocityPython | ||
from .connection import CumulocityConnection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
setup( | ||
name = 'cumulocitypython', | ||
packages = ['cumulocitypython'], | ||
version = '0.1.2', | ||
version = '0.1.3', | ||
license='MIT', | ||
description = 'Purpose of this package is to easily request historical data from your cumulocity tenant and return it as a pandas dataframe.', | ||
author = 'Silver Laius', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/SilverLaius/cumulocitypython', | ||
download_url = 'https://github.com/SilverLaius/cumulocitypython/archive/1.1.2.tar.gz', | ||
download_url = 'https://github.com/SilverLaius/cumulocitypython/archive/1.1.3.tar.gz', | ||
keywords = ['Python', 'Cumulocity', 'Pandas'], | ||
install_requires=[ | ||
'python-dateutil', | ||
|