- Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
37 lines (34 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (34 loc) · 1.18 KB
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
34
35
36
37
# -*- coding: utf-8 -*-
importsys
importos.path
fromsetuptoolsimportsetup
PKG_NAME="PythonForWindows"
VERSION="1.0.4"
# Load long description from README.md
this_directory=os.path.abspath(os.path.dirname(__file__))
withopen(os.path.join(this_directory, 'README.md')) asf:
long_description=f.read()
setup(
name=PKG_NAME,
version=VERSION,
author='Hakril',
author_email='pfw@hakril.net',
description='A codebase aimed to make interaction with Windows and native execution easier',
long_description=long_description,
long_description_content_type='text/markdown',
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 :: 3',
'Programming Language :: Python :: 2.7']
)