Files
hakril-PythonForWindows/setup.py
T
2018-03-27 21:33:06 +02:00

25 lines
651 B
Python

from setuptools import setup
# -*- coding: utf-8 -*-
PKG_NAME = "PythonForWindows"
VERSION = "0.4"
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 = '',
packages = ['windows',
'windows.crypto',
'windows.debug',
'windows.generated_def',
'windows.native_exec',
'windows.rpc',
'windows.utils',
'windows.winobject'],
)