setup.py: fix computation of BASE_DIR

This commit is contained in:
Benjamin Dauvergne 2015-09-25 20:26:09 +02:00
parent 2e534d26fd
commit f18706c051
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ from distutils.command.build import build as _build
from distutils.command.sdist import sdist
from setuptools import setup, find_packages
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
BASE_DIR = os.path.dirname(__file__)
class eo_sdist(sdist):