Skip to content

Commit

Permalink
bump version and package for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
PauloPhagula committed May 13, 2018
1 parent 90a36aa commit 8198281
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
# coding: utf-8

from setuptools import setup
from __future__ import unicode_literals, print_function
import os
import sys
import codecs
from email.utils import parseaddr
from setuptools import setup, find_packages

def file_get_contents(filename):
"""Reads an entire file into a string."""
assert os.path.exists(filename) and os.path.isfile(filename), 'invalid filename: ' + filename
return codecs.open(filename, 'r', 'utf-8').read()

SETUP_DIR = os.path.abspath(os.path.dirname(__file__))
LONG_DESCRIPTION = '\n'.join([file_get_contents('README.md')])

setup(
name='TinyDIC',

version='0.1.0',
version='0.1.1',

description='Tiny Python Dependency Injection Container.',
# long_description=__doc__,
long_description=LONG_DESCRIPTION,

url='https://github.com/dareenzo/tinydic',

Expand Down

0 comments on commit 8198281

Please sign in to comment.