parent
3604862b84
commit
1986e395d7
@ -1,5 +0,0 @@
|
||||
python3-bs4
|
||||
python3-wxgtk4.0
|
||||
python3-feedparser
|
||||
python3-vlc
|
||||
python3-pychromecast
|
@ -0,0 +1,29 @@
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="cast",
|
||||
version="0.0.1",
|
||||
author="Micke Nordin",
|
||||
author_email="hej@mic.ke",
|
||||
data_files = [('share/applications', ['data/org.smolnet.cast.desktop']),],
|
||||
description="A Public Service video player.",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://code.smolnet.org/micke/cast",
|
||||
project_urls={
|
||||
"Bug Tracker": "https://code.smolnet.org/micke/cast/issues",
|
||||
},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GPL-3.0",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
package_dir={"": "src"},
|
||||
packages=setuptools.find_packages(where="src"),
|
||||
python_requires=">=3.9",
|
||||
scripts=["scripts/cast"],
|
||||
)
|
||||
|
Loading…
Reference in new issue