-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from lawrencefoley/5-update-login
Add CSRF token to login request. Fixes #5.
- Loading branch information
Showing
6 changed files
with
21 additions
and
8 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 |
---|---|---|
|
@@ -48,3 +48,4 @@ com_crashlytics_export_strings.xml | |
crashlytics.properties | ||
crashlytics-build.properties | ||
fabric.properties | ||
/venv/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -12,12 +12,12 @@ | |
|
||
setup( | ||
name='kcpl', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description='A utility that reads electric utility meter data from KCPL.com', | ||
long_description=long_description, | ||
url='https://github.com/lawrencefoley/kcpl', | ||
author='Lawrence Foley', | ||
author_email='[email protected]', # Optional | ||
author_email='[email protected]', | ||
|
||
# Classifiers help users find your project by categorizing it. | ||
# | ||
|
@@ -39,14 +39,14 @@ | |
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
|
||
# This field adds keywords for your project which will appear on the | ||
# project page. What does your project relate to? | ||
# | ||
# Note that this is a string of words separated by whitespace, not a list. | ||
keywords='kcpl api utilities kansas-city', # Optional | ||
keywords='kcpl evergy api utilities kansas-city', # Optional | ||
|
||
# You can just specify package directories manually here if your project is | ||
# simple. Or you can use find_packages(). | ||
|