Skip to content
Snippets Groups Projects

Develop

Closed Huihui, Jonathan requested to merge develop into main
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
@@ -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