Skip to content

Commit

Permalink
updated package
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalebu committed Apr 20, 2021
1 parent b0b2496 commit 5e87160
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nida/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def capitalize_keys(user_data):
new_user_data = {}
for key in user_data.keys():
capitalized_key = key.capitalize()
new_user_data[capitalized_key] = 'XXXXXX' # user_data[key]
new_user_data[capitalized_key] = user_data[key]
return new_user_data

def preprocess_user_data(self, user_data: dict) -> dict:
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from distutils.core import setup
from setuptools import setup

setup(
name="mtaa",
name="nida",
version="0.1.0",
description="A package consisting of all Tanzania locations from region to streets in a easy accessible way",
description="A python libary to Easy fetching user information based on National ID (Tanzania)",
url="https://github.com/Kalebu/nida",
download_url="https://github.com/Kalebu/nida/archive/0.1.tar.gz",
download_url="https://github.com/Kalebu/Nida/archive/0.1.tar.gz",
author="Jordan Kalebu",
author_email="[email protected]",
license="MIT",
packages=["mtaa"],
packages=["nida"],
keywords=[
"nida",
"nida api"
Expand Down

0 comments on commit 5e87160

Please sign in to comment.