mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
24 lines
579 B
Python
24 lines
579 B
Python
from setuptools import setup
|
|
# -*- coding: utf-8 -*-
|
|
|
|
PKG_NAME = "PythonForWindows"
|
|
VERSION = "0.3"
|
|
|
|
|
|
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',
|
|
'windows.winobject',
|
|
'windows.debug',
|
|
'windows.test'],
|
|
) |