Merge pull request #7 from wolfv/utf8

add utf8 encoding
This commit is contained in:
Wolf Vollprecht 2019-03-25 17:21:18 +01:00 committed by GitHub
commit c543fa56e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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