-
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.
- Loading branch information
Showing
5 changed files
with
23 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Parsenvy Changelog | ||
|
||
## [0.1] | ||
|
||
### Added | ||
- Basic functionality | ||
|
||
[0.1]: https://github.com/nkantar/Parsenvy/commit/HEAD |
Empty file.
File renamed without changes.
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,14 @@ | ||
from setuptools import setup | ||
|
||
setup(name = 'parsenvy', | ||
packages = ['parsenvy'], | ||
version = '0.1', | ||
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', | ||
keywords = ['environment variables'], | ||
classifiers = [], | ||
license = 'BSD-3-Clause', | ||
zip_safe = False) |
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 | ||
import parsenvy | ||
from parsenvy import parsenvy | ||
import unittest | ||
|
||
|
||
|