Skip to content

Commit

Permalink
jump -> 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abranhe committed Sep 17, 2021
1 parent 69e5241 commit c40f4ad
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

"""The setup.py file for username"""

from setuptools import setup
from setuptools import setup, find_packages

DESCRIPTION = 'Get the current username'
LONG_DESCRIPTION = open("readme.md").read()

VERSION = '2.0.5'
VERSION = '2.1.0'
URL = 'https://projects.abranhe.com/username'
GITHUB_URL = 'https://github.com/abranhe/lupe'

Expand Down Expand Up @@ -42,6 +42,6 @@
],


packages=find_packages(),
keywords='cli command-line-interface python bash-tool username',
include_package_data=True
)
15 changes: 15 additions & 0 deletions username/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
"""
Get the username of the current user.
Example:
```python
import username
username()
# 'abranhe'
```
Read more on the [documentation](https://github.com/abranhe/username)
"""

import sys
import os
import getpass
Expand Down

0 comments on commit c40f4ad

Please sign in to comment.