mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
Updated version to 0.6 - Py3 supported !
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
[](https://gitter.im/PythonForWindows/general)
|
||||
|
||||
PythonForWindows is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
|
||||
PythonForWindows (PFW) is a base of code aimed to make interaction with `Windows` (on X86/X64) easier (for both 32 and 64 bits Python).
|
||||
Its goal is to offer abstractions around some of the OS features in a (I hope) pythonic way.
|
||||
It also tries to make the barrier between python and native execution thinner in both ways.
|
||||
There is no external dependencies but it relies heavily on the `ctypes` module.
|
||||
|
||||
+3
-3
@@ -64,16 +64,16 @@ master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'PythonForWindows'
|
||||
copyright = u'2015, Clement Rouault'
|
||||
copyright = u'2015-2020, Clement Rouault'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.5'
|
||||
version = '0.6'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.5'
|
||||
release = '0.6'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
@@ -3,11 +3,7 @@ import sys
|
||||
from setuptools import setup
|
||||
|
||||
PKG_NAME = "PythonForWindows"
|
||||
VERSION = "0.5"
|
||||
|
||||
if sys.version_info[0] != 2:
|
||||
print("PythonForWindows python3 support is still in beta, feel free to send feedback")
|
||||
|
||||
VERSION = "0.6"
|
||||
|
||||
setup(
|
||||
name = PKG_NAME,
|
||||
@@ -28,6 +24,6 @@ setup(
|
||||
'windows.winobject',
|
||||
'windows.winproxy',
|
||||
'windows.winproxy.apis'],
|
||||
classifiers = ['Programming Language :: Python :: 2 :: Only',
|
||||
classifiers = ['Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 2.7']
|
||||
)
|
||||
Reference in New Issue
Block a user