add utf8 encoding

This commit is contained in:
Wolf Vollprecht 2019-03-25 17:19:42 +01:00
parent 073007ba60
commit 5229a82080
4 changed files with 7 additions and 0 deletions

View File

@ -1 +1,2 @@
# -*- coding: utf-8 -*-
from ._version import version_info, __version__

View File

@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-
version_info = (0, 0, 2)
__version__ = '.'.join(map(str, version_info))

View File

@ -1,3 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2019, QuantStack
# SPDX-License-Identifier: BSD-3-Clause
import sys, os
from conda.cli.main import generate_parser, init_loggers

View File

@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
import sys, os, platform