# -*- coding: utf-8 -*- import sys from setuptools import setup PKG_NAME = "PythonForWindows" VERSION = "0.4" if sys.version_info[0] != 2: raise NotImplementedError("PythonForWindows only support Python2 for now") setup( name = PKG_NAME, version = VERSION, author = 'Hakril', author_email = 'none', description = 'A codebase aimed to make interaction with Windows and native execution easier', license = 'BSD', keywords = 'windows python', url = 'https://github.com/hakril/PythonForWindows', packages = ['windows', 'windows.crypto', 'windows.debug', 'windows.generated_def', 'windows.native_exec', 'windows.rpc', 'windows.utils', 'windows.winobject'], classifiers = ['Programming Language :: Python :: 2 :: Only', 'Programming Language :: Python :: 2.7'] )