-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make parsenvy importable with import parsenvy
This commit changes parsenvy importing from `from parsenvy import parsenvy` to `import parsenvy`. This entails: - Updating __init__.py to import everything - Updating setup.py for PyPI's sake - Updating tests - Updating the README - Updating the CHANGELOG (is this supposed to be in commit messages?)
- Loading branch information
Showing
5 changed files
with
11 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .parsenvy import * |
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,12 +2,12 @@ | |
|
||
setup(name = 'parsenvy', | ||
packages = ['parsenvy'], | ||
version = '0.1.2', | ||
version = '1.0.0', | ||
description = 'Enviously elegant environment variable parsing', | ||
author = 'Nik Kantar', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/nkantar/Parsenvy', | ||
download_url = 'https://github.com/nkantar/Parsenvy/tarball/0.1.2', | ||
download_url = 'https://github.com/nkantar/Parsenvy/tarball/1.0.0', | ||
keywords = ['environment variables'], | ||
classifiers = [], | ||
license = 'BSD-3-Clause', | ||
|
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,5 +1,5 @@ | ||
import os | ||
from parsenvy import parsenvy | ||
import parsenvy | ||
import unittest | ||
|
||
|
||
|