Commit cfd797ec authored by Huihui, Jonathan's avatar Huihui, Jonathan
Browse files

bump common version to 0.3.1

parent d693c74b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2,13 +2,14 @@
# -*- coding: utf-8 -*-
"""The setup file for the common package."""
import os
from setuptools import setup
from setuptools import setup, find_packages

# update version information here
_version = '0.3.1' # '0.1.14'

# packages
_packages = ['common', 'common.mixins']
_packages = find_packages()  #['common', 'common.mixins' ]
_extras = {"postgres": "psycopg2-binary"}

# retrieve metadata and packages based on files
_here = os.path.abspath(os.path.dirname(__file__))