Skip to content

Commit d540544

Browse files
committed
Initial working source distribution (Windows only)
1 parent 4375473 commit d540544

12 files changed

+17
-236
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ script:
77
deploy:
88
provider: pypi
99
user: mottosso
10-
distributions: "bdist_wininst"
10+
distributions: "sdist"
1111
password:
1212
secure: c2n8K185Yz8u7y4zeqmZC+lkGIRqWJubHi/3SVdelQF+rgCUbbCg25B4TTAM0r1ESReuLixjVpU2UmuJ8LonmUsCicnBA0gbWfTfkIMICVZ+0+s3WYnlIAaO0rYj581vVwTXC/iN8nRepcjsczA0HThRp3lILB7ZjNxLRYivFRY=
1313
on:

PyQt5/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = plugin_path
3232

3333
# Expose versions
34-
version_info = (0, 1, 4) # Version of this release
34+
version_info = (0, 1, 0) # Version of this release
3535
version = "%s.%s.%s" % version_info
3636
__version__ = version
3737

PyQt5/uic/port_v3/__init__.py

-20
This file was deleted.

PyQt5/uic/port_v3/as_string.py

-40
This file was deleted.

PyQt5/uic/port_v3/ascii_upper.py

-30
This file was deleted.

PyQt5/uic/port_v3/invoke.py

-48
This file was deleted.

PyQt5/uic/port_v3/load_plugin.py

-39
This file was deleted.

PyQt5/uic/port_v3/proxy_base.py

-29
This file was deleted.

PyQt5/uic/port_v3/string_io.py

-24
This file was deleted.

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
> This is not in any way related to Riverbanksoftware.
44
5-
This is not yet a working copy, but below are instructions for its intended usage.
6-
75
```bash
86
# To install
97
$ pip install pypiqt5

README.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PyQt5 distributed via PyPI
2+
--------------------------
3+
4+
See `GitHub repository`_ for more information.
5+
6+
.. _`GitHub repository`: https://github.com/pyqt/pyqt5

setup.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@ def get_package_data():
2828
return package_data
2929

3030

31+
def get_readme():
32+
with open('README.txt') as f:
33+
readme = f.read()
34+
return readme
35+
36+
3137
classifiers = [
38+
'Development Status :: 3 - Alpha',
3239
'Intended Audience :: Developers',
3340
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
3441
'Programming Language :: Python',
@@ -40,10 +47,10 @@ def get_package_data():
4047

4148

4249
setup(
43-
name='pypiqt5', # To avoid name-clash with existing PyQt5
50+
name='python-qt5',
4451
version=get_version(),
4552
description='PyQt5',
46-
long_description="pypiqt5",
53+
long_description=get_readme(),
4754
author='Marcus Ottosson',
4855
author_email='[email protected]',
4956
url='https://github.com/pyqt/pyqt5',

0 commit comments

Comments
 (0)