Changeset - 043c81adf5c7
[Not reviewed]
0 1 0
Lance Edgar (lance) - 6 years ago 2018-02-15 10:01:46
lance@edbob.org
Replace `execfile()` usage per python 3
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
# -*- coding: utf-8; -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#  Copyright © 2013-2018 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
@@ -22,13 +21,14 @@
 
#
 
################################################################################
 

	
 
from __future__ import unicode_literals, absolute_import
 

	
 
import os.path
 
from setuptools import setup, find_packages
 

	
 

	
 
here = os.path.abspath(os.path.dirname(__file__))
 
execfile(os.path.join(here, 'sqlalchemy_pervasive', '_version.py'))
 
exec(open(os.path.join(here, 'sqlalchemy_pervasive', '_version.py')).read())
 

	
 
README = open(os.path.join(here, 'README.rst')).read()
 
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
0 comments (0 inline, 0 general)