Loading src/setup.py +3 −2 Original line number Diff line number Diff line Loading @@ -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__)) Loading Loading
src/setup.py +3 −2 Original line number Diff line number Diff line Loading @@ -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__)) Loading