forked from hakril/PythonForWindows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1016 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
PKG_NAME = "PythonForWindows"
VERSION = "0.5"
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',
'windows.winproxy',
'windows.winproxy.apis'],
classifiers = ['Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 2.7']
)