Files
hakril-PythonForWindows/setup.py
T
2016-02-10 17:51:54 +01:00

18 lines
429 B
Python

from setuptools import setup
# -*- coding: utf-8 -*-
PKG_NAME = "PythonForWindows"
VERSION = "0.1"
setup(
name = PKG_NAME,
version = VERSION,
author = 'Hakril',
author_email = 'none',
description = 'Python wrapper around parts of Windows',
license = 'BSD',
keywords = 'windows python',
url = '',
packages = ['windows', 'windows.generated_def', 'windows.native_exec', 'windows.utils'],
)