Skip to content

Commit

Permalink
fix(setup.py): adds wheel support
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkarry committed Nov 19, 2023
1 parent defc99d commit b679e82
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Empty file added config/__init__.py
Empty file.
File renamed without changes.
Empty file added retraktarr/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion retraktarr.py → retraktarr/retraktarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from api.arr import ArrAPI
from api.trakt import TraktAPI
from config import Configuration
from config.config import Configuration

try:
with open(
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
version=VERSION_NO,
# Short description of your library
description=("a simple Arr -> Trakt.tv list sync script"),
entry_points={"console_scripts": ["retraktarr = retraktarr.retraktarr:main"]},
# Long description of your library
install_requires="requests",
long_description=LONG_DESCRIPTION,
Expand All @@ -41,12 +42,12 @@
# Your name
author="zakkarry",
# Your email
author_email="",
author_email="[email protected]",
# Either the link to your github or to your website
url="https://github.com/zakkarry",
# Link from which the project can be downloaded
download_url="https://github.com/zakkarry/retraktarr",
packages=find_packages("."),
package_dir={"": "."},
packages=find_packages(),
package_data={"": ["retraktarr/*", "api/*", "config/*"]},
include_package_data=True,
)

0 comments on commit b679e82

Please sign in to comment.