Skip to content

Commit

Permalink
First release, everything "works"!
Browse files Browse the repository at this point in the history
  • Loading branch information
nkantar committed Jul 31, 2017
1 parent 476a594 commit 6991ba7
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
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 added parsenvy/__init__.py
Empty file.
File renamed without changes.
14 changes: 14 additions & 0 deletions setup.py
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)
2 changes: 1 addition & 1 deletion pt.py → tests.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import parsenvy
from parsenvy import parsenvy
import unittest


Expand Down

0 comments on commit 6991ba7

Please sign in to comment.