Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Issue with file icons not appearing in PyPi installs. #70

Merged
merged 2 commits into from
Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include Makefile
include package.json
include requirements.txt

graft assets
graft tests
graft torrentfileQt

Expand Down
Empty file added assets/__init__.py
Empty file.
13 changes: 7 additions & 6 deletions coverage.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<coverage version="6.3.2" timestamp="1648670641036" lines-valid="1982" lines-covered="1982" line-rate="1" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<coverage version="6.3.2" timestamp="1648685654323" lines-valid="1983" lines-covered="1983" line-rate="1" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<!-- Generated by coverage.py: https://coverage.readthedocs.io -->
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
<sources>
Expand Down Expand Up @@ -711,6 +711,7 @@
<line number="19" hits="1"/>
<line number="21" hits="1"/>
<line number="22" hits="1"/>
<line number="23" hits="1"/>
<line number="24" hits="1"/>
<line number="26" hits="1"/>
<line number="27" hits="1"/>
Expand Down Expand Up @@ -1986,11 +1987,11 @@
<line number="22" hits="1"/>
<line number="24" hits="1"/>
<line number="27" hits="1"/>
<line number="599" hits="1"/>
<line number="702" hits="1"/>
<line number="717" hits="1"/>
<line number="732" hits="1"/>
<line number="740" hits="1"/>
<line number="602" hits="1"/>
<line number="705" hits="1"/>
<line number="720" hits="1"/>
<line number="735" hits="1"/>
<line number="743" hits="1"/>
</lines>
</class>
<class name="version.py" filename="torrentfileQt/version.py" complexity="0" line-rate="1" branch-rate="0">
Expand Down
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,7 @@ def get_info():
author_email=INFO["email"],
description=INFO["description"],
long_description=INFO["long_description"],
packages=find_packages(exclude=["env", "tests"]),
package_data={
'torrentfileQt': [
'assets/icons/*.png',
'assets/*.png',
'assets/*.ico'
]
},
packages=find_packages(exclude=[".env"]),
install_requires=["torrentfile", "pyben", "PySide6"],
project_urls={"Source Code": "https://github.com/alexpdev/torrentfileQt"},
long_description_content_type="text/markdown",
Expand Down